GraphQL - Type Relationships
Given this GraphQL schema:
What will happen if you query an Employee's projects and for each project, list all team members?
type Employee { id: ID! projects: [Project!]! } type Project { id: ID! team: [Employee!]! }What will happen if you query an Employee's projects and for each project, list all team members?
