GraphQL - Type Relationships
Given the schema:
What will the query
type Customer { id: ID name: String orders: [Order] } type Order { id: ID total: Float customer: Customer }What will the query
{ customer(id: "5") { name orders { id total } } } return assuming customer 5 has two orders?