ENUM

LobbyState

The lobby state signifies the progress in the competition.

link GraphQL Schema definition

1enum LobbyState {
2
3# No participants are in lobby.
4PREP
5
6# Participants have filled the lobby and can be swapped around different lobbies.
7READY
8
9# Participants are currently playing in the lobby, they can be scored but cannot
10# be swapped to different lobbies.
11ACTIVE
12
13# Participants are all scored and no longer playing.
14DONE
15
16# Lobby state is unknown.
17UNKNOWN
18}