GraphQL - Type Relationships
Given this schema:
What will this query return?
Assuming employee with id "5" has a desk assigned.
type Employee { id: ID! name: String desk: Desk }type Desk { id: ID! location: String }What will this query return?
{ employee(id: "5") { name desk { location } } }Assuming employee with id "5" has a desk assigned.
