GraphQL - Type Relationships
Given this schema snippet:
Which of the following query definitions will cause an error?
type Product { id: ID name: String category: Category } type Category { id: ID name: String }Which of the following query definitions will cause an error?
