ENUM

PhaseState

The phase state signifies the progress of the phase in the competition.

link GraphQL Schema definition

1enum PhaseState {
2
3# No lobbies are currently actively playing in the phase.
4UNSTARTED
5
6# Some or all the lobbies in the phase are actively playing.
7PLAYING
8
9# All lobbies in the phase are done playing.
10FINISHED
11
12# Lobby state is unknown.
13UNKNOWN
14}