ENUM

CompetitionState

The State of the Competition.

link GraphQL Schema definition

1enum CompetitionState {
2
3# Upcoming competition.
4UPCOMING
5
6# Past competition.
7PAST
8
9# Live competition.
10LIVE
11
12# A competition that's awaiting check-ins.
13CHECK_IN
14
15# A competition that's ready to be started.
16READY
17
18# A competition that finished with no conclusion.
19CANCELLED
20
21# Unknown state.
22UNKNOWN
23}