GraphQL - Type Relationships
You wrote this GraphQL schema snippet:
Why does this cause problems in representing many-to-many relationships?
type User { groups: Group } type Group { users: User }Why does this cause problems in representing many-to-many relationships?
