NetanelBasal
5/27/2017 - 8:57 PM

posts7.query.ts

  getArticlesWithFavorites() {
    return Observable.combineLatest(this.getArticles(), this.userQuery.getArticles(),
      ( articles, favorites ) => {
        // find the favorites and add favorite: true
      });
  }