getArticlesWithCommentsAndAuthors() {
return Observable.combineLatest(this.getArticlesWithComments(), this.selectUsers$,
(articles, users) => {
return articles.map(article => {
return { ...article, author: users[article.author]
}
});
}
)
}