OBJECT

BitsLeaderboard

BitsLeaderboard contains the leaderboard for a specified channel.

link GraphQL Schema definition

1type BitsLeaderboard {
2
3# entries is the list of users in the leaderboard ordered by the number of bits
4# cheered.
5entries: BitsLeaderboardConnection! @deprecated( reason: "the ID field is not unique between leaderboards on leaderboard entries. Use leaderboard item." )
6
7# id is the id of this leaderboard.
8id: ID!
9
10# items is the list of users in the leaderboard ordered by the number of bits
11# cheered.
12items: BitsLeaderboardItemConnection!
13
14# SecondsRemaining is the number of seconds left before the leaderboard expires
15# (or zero for all-time).
16secondsRemaining: Int!
17
18}