GraphQL - Type Relationships
Given this schema snippet:
What error occurs if the resolver for
type Manager { id: ID! office: Office }type Office { id: ID! roomNumber: String }What error occurs if the resolver for
office returns an array instead of a single Office object?