OBJECT

Tournament

Tournament 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.

link GraphQL Schema definition

1type Tournament {
2
3# Leaderboard of all users who have cheered in the tournament.
4globalLeaderboard: BitsLeaderboard! @deprecated( reason: "No longer supported" )
5
6# Event ID of the tournament.
7id: ID! @deprecated( reason: "No longer supported" )
8
9# The list of global milestones that can be claimed in the tournament.
10# For a given threshold, this milestone is reached when cheers from all users on
11# the channel
12# is greater than or equal to the threshold. This unlocks a reward for all users
13# who have cheered.
14progress: TournamentProgress! @deprecated( reason: "No longer supported" )
15
16# The list of rewards that are a part of the tournament. This is separated out
17# into global, participant, and individual
18# rewards that can be claimed if the user is logged in.
19rewards: TournamentRewards @deprecated( reason: "No longer supported" )
20
21# The list of individual milestones that can be claimed in the tournament.
22# for a given threshold, this milestone is reached when an individual user's total
23# cheers in
24# the channel is greater than or equal to the threshold. This unlocks a reward
25# for the individual user who cheered.
26self: TournamentSelfEdge @deprecated( reason: "No longer supported" )
27
28# Leaderboard of all teams who have been cheered for in the tournament. This
29# leaderboard contains how much each team
30# in the tournament was cheered for.
31teamLeaderboard: BitsLeaderboard! @deprecated( reason: "No longer supported" )
32
33# The list of teams participating in the tournament.
34teams: [TournamentTeam]! @deprecated( reason: "No longer supported" )
35
36}