I have this query graphql in Graphcool:
const FeedQuery = gql`
query FeedPosts($id:ID!){
User(id:$id){
id
follows{
id
followed{
id
name
lastname
posts{
id
title
description
city
state
} }} }}`;
I tried to map using rxjs but I could only get the data from the "followed" level of the query ... How to get a list of "posts" using the apollo + angular * ngFor? ...
I got the answer in this Topic …I changed the query to:
using _some can get the related fields