OBJECT
BitsLeaderboard
BitsLeaderboard contains the leaderboard for a specified channel.
link GraphQL Schema definition
1 type BitsLeaderboard { 2 3 # entries is the list of users in the leaderboard ordered by the number of bits 4 # cheered. 5 : 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. 8 : ID! 9 10 # items is the list of users in the leaderboard ordered by the number of bits 11 # cheered. 12 : BitsLeaderboardItemConnection! 13 14 # SecondsRemaining is the number of seconds left before the leaderboard expires 15 # (or zero for all-time). 16 : Int! 17 18 }
link Required by
- CheerInfoCheerInfo is the channel-specific bits/cheer settings and current state.
- TournamentTournament is an object that contains all information about a tournament managed within Bits for a specific event tied to cheering. NOTE: Should have been named CheeringTournament.
- UserSelfConnectionSubjective data on another User (user/channel) for the current user.