ENUM

CompetitionPlayerState

The states a player can have in the competition.

link GraphQL Schema definition

1enum CompetitionPlayerState {
2
3# The player has been invited.
4INVITED
5
6# The player has registered to compete in this competition in the future.
7REGISTERED
8
9# The player has checked in to compete now.
10CHECKED_IN
11
12# The player has competed in the competition.
13COMPETED
14
15# The player has declined the competition.
16DECLINED
17
18# The player state is unknown.
19UNKNOWN
20}