GraphQL - Type Relationships
Given this schema:
type Category { id: ID! name: String! products: [Product!]! }
type Product { id: ID! name: String! category: Category! }
What will this query return?
{ category(id: "10") { name products { id name } } }
