OBJECT

TournamentSelfEdge

Tournament progress related to a user.

link GraphQL Schema definition

1type TournamentSelfEdge {
2
3# The leaderboard entry of the user. Gives the current position and score.
4globalLeaderboardItem: BitsLeaderboardItem @deprecated( reason: "No longer supported" )
5
6# Amount of progress a user had made towards the tournament personally. This could
7# be a combination of factors,
8# including bits cheered in the channel.
9progress: TournamentProgress! @deprecated( reason: "No longer supported" )
10
11# A list of the amount of bits a user has cheered for a certain team, as well as
12# the
13# list of milestones that the user could claim with their claim status.
14teams: [TournamentTeam!]! @deprecated( reason: "No longer supported" )
15
16}