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