OBJECT
CompetitionStanding
A single participant's competition standing including score and placement.
link GraphQL Schema definition
1 type CompetitionStanding { 2 3 # A record of all lobbies (1 per phase) in which the participant has competed. 4 : [HistoricalCompetitionLobby!] 5 6 # The participant whose score and placement are being reported. 7 : CompetitionParticipant! 8 9 # Placement is a participant's rank in the competition standings. 10 : CompetitionPlacement! 11 12 # The participant's current score for the competition. 13 : Int 14 15 # Summation of bonus points awarded to a participant. 16 : Int 17 18 # Percentage of done lobbies the participant has won out of the done lobbies the 19 # participant in, if participant is not in any done lobbies this will be null. 20 : Int 21 22 }