OBJECT

BitsLeaderboardEntry

Leaderboard entry at a specific node in a leaderboard connection.

link GraphQL Schema definition

1type BitsLeaderboardEntry {
2
3# id the id of this leaderboard entry.
4id: ID!
5
6# rank the ordinal rank of this leaderboard entry.
7rank: Int!
8
9# score the number of bits cheered by this leaderboard entry.
10score: Int!
11
12}