OBJECT

CompetitionStanding

A single participant's competition standing including score and placement.

link GraphQL Schema definition

1type CompetitionStanding {
2
3# A record of all lobbies (1 per phase) in which the participant has competed.
4history: [HistoricalCompetitionLobby!]
5
6# The participant whose score and placement are being reported.
7participant: CompetitionParticipant!
8
9# Placement is a participant's rank in the competition standings.
10placement: CompetitionPlacement!
11
12# The participant's current score for the competition.
13score: Int
14
15# Summation of bonus points awarded to a participant.
16tiebreakerScore: 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.
20winPercentage: Int
21
22}