OBJECT

CompetitionLobbyParticipant

A CompetitionLobbyParticipant, and its scores, in a lobby.

link GraphQL Schema definition

1type CompetitionLobbyParticipant {
2
3# The detailed participant associated with the lobby participant, can be a
4# Competition Player or Competition Team.
5detailedParticipant: CompetitionParticipant!
6
7# Unique ID for CompetitionLobbyParticipant.
8id: ID!
9
10# The score for this participant.
11score: Int
12
13# Tie breaker points awarded to the participant for this lobby
14tiebreakerScore: Int
15
16}