OBJECT

LeaderboardDetails

The details of Leaderboard format.

link GraphQL Schema definition

1type LeaderboardDetails {
2
3# The max participant count for a lobby in phase. Valid values are 1-100.
4lobbyMaxSize: Int!
5
6# The number of phases to be created for the competition. Valid values are 1-20.
7phaseCount: Int!
8
9# A display string conveying how a Competition Organizer intends to resolve ties.
10tiebreakerLabel: TiebreakerLabel
11
12}