OBJECT

CompetitionPhase

A Phase created by a competition organizer.

link GraphQL Schema definition

1type CompetitionPhase {
2
3# Unique phase ID.
4id: ID!
5
6# The lobbies in a phase.
7lobbies: [CompetitionLobby!]!
8
9# The state of the phase. It is derived on whether any of the lobbies are actively
10# playing.
11state: PhaseState!
12
13# For more complex tournaments, the type determines how you progress after a
14# phase.
15type: CompetitionPhaseType
16
17}