GraphQL - Type Relationships
In this schema:
Which query will cause a runtime error if the resolver for 'customer' returns null?
type Order { id: ID customer: Customer } type Customer { id: ID name: String }Which query will cause a runtime error if the resolver for 'customer' returns null?
