GraphQL - Type Relationships
If you run this query:
With schema:
What is the expected output?
{ order { customer { name } } }With schema:
type Order { customer: Customer } type Customer { name: String }What is the expected output?
