OBJECT

CompetitionSelfEdge

The relationship between the authenticated user and the competition.

link GraphQL Schema definition

1type CompetitionSelfEdge {
2
3# Whether the user is invited to the competition.
4isInvited: Boolean
5
6# Whether the user is the owner.
7isOwner: Boolean
8
9# Whether the user is a player in the competition.
10isPlayer: Boolean
11
12# Whether the user is registered in the competition.
13isRegistered: Boolean
14
15}