OBJECT

BitsLeaderboardItem

Leaderboard item at a specific node in a leaderboard connection.

link GraphQL Schema definition

1type BitsLeaderboardItem {
2
3# entryKey the key of this leaderboard item.
4entryKey: String!
5
6# id the id of this leaderboard item.
7id: ID!
8
9# rank the ordinal rank of this leaderboard item.
10rank: Int!
11
12# score the number of bits cheered by this leaderboard entry.
13score: Int!
14
15}