ENUM

CompetitionPhaseType

The phase type subdivides phases for more complex tournament types.

link GraphQL Schema definition

1enum CompetitionPhaseType {
2
3# This phase contains participants who have not used their second-chance.
4DOUBLE_ELIMINATION_WINNERS
5
6# This phase contains participants who have lost a lobby once.
7DOUBLE_ELIMINATION_LOSERS
8
9# Phase type is not applicable to a phase of this competition type.
10NOT_APPLICABLE
11
12# Phase type is unknown.
13UNKNOWN
14}