GraphQL - Type Relationships
You have this schema:
Why does this query cause an error?
type Post { author: User } type User { posts: [Post] }Why does this query cause an error?
{ post { author { posts } } }