ENUM

UserCompetitionRelationship

Enum that specifies which role the user is taking when querying for competitions.

link GraphQL Schema definition

1enum UserCompetitionRelationship {
2
3# Player in a competition.
4PLAYER
5
6# Owner of a competition.
7OWNER
8
9# Unknown competition role.
10UNKNOWN
11}