OBJECT

TournamentRewards

This type holds all information about rewards that are associated with a tournament. The struct parses out which rewards are Global, Team, and Individual, as well as if you're logged in that status if you can claim the reward.

link GraphQL Schema definition

1type TournamentRewards {
2
3# The list of Cheerbomb rewards. If the user is logged in, this will also show the
4# claim status of the reward.
5cheerbomb: [TournamentReward!]! @deprecated( reason: "No longer supported" )
6
7# The list of Global rewards. If the user is logged in, this will also show the
8# claim status of the reward.
9global: [TournamentReward!]! @deprecated( reason: "No longer supported" )
10
11# The list of Individual rewards. If the user is logged in, this will also show
12# the claim status of the reward.
13individual: [TournamentReward!]! @deprecated( reason: "No longer supported" )
14
15# The list of Insider rewards, which are granted when one subscribes to the
16# insider pass.
17insider: TournamentInsiderRewards! @deprecated( reason: "No longer supported" )
18
19# The list of Team rewards. If the user is logged in, this will also show the
20# claim status of the reward.
21team: [TournamentReward!]! @deprecated( reason: "No longer supported" )
22
23}