GraphQL - Type Relationships
Examine this GraphQL schema snippet for a one-to-many relationship:
type Customer { id: ID! orders: Order! } type Order { id: ID! customer: Customer! }
What is the issue here?