OBJECT
CompetitionLobbyParticipant
A CompetitionLobbyParticipant, and its scores, in a lobby.
link GraphQL Schema definition
1 type CompetitionLobbyParticipant { 2 3 # The detailed participant associated with the lobby participant, can be a 4 # Competition Player or Competition Team. 5 : CompetitionParticipant! 6 7 # Unique ID for CompetitionLobbyParticipant. 8 : ID! 9 10 # The score for this participant. 11 : Int 12 13 # Tie breaker points awarded to the participant for this lobby 14 : Int 15 16 }