GraphQL - Type Relationships
This GraphQL schema snippet causes an error:
What is the likely cause?
type Post { id: ID! author: User } type User { id: ID! posts: [Post!]! }What is the likely cause?
