OBJECT
CompetitionSelfEdge
The relationship between the authenticated user and the competition.
link GraphQL Schema definition
1 type CompetitionSelfEdge { 2 3 # Whether the user is invited to the competition. 4 : Boolean 5 6 # Whether the user is the owner. 7 : Boolean 8 9 # Whether the user is a player in the competition. 10 : Boolean 11 12 # Whether the user is registered in the competition. 13 : Boolean 14 15 }