OBJECT

CompetitionLobby

A Lobby in a phase.

link GraphQL Schema definition

1type CompetitionLobby {
2
3# Lobby ID of lobby to advance the winner to.
4advanceNextLobby: ID
5
6# Unique lobby ID.
7id: ID!
8
9# Lobby ID of lobby to advance the loser to.
10lossNextLobby: ID
11
12# The participants of a lobby, and their scores.
13participants: [CompetitionLobbyParticipant!]
14
15# The count of reported scores of the lobby.
16reportedScoreCount: Int!
17
18# The state of the lobby.
19state: LobbyState!
20
21# The participant who had a higher score, if scores are equal and the lobby is
22# done, the lobby ended in a tie and winner returns null
23winner: CompetitionLobbyParticipant
24
25}