OBJECT

TournamentProgress

Describes the amount of progress that has been made in a tournament, with corresponding milestones about said progress.

link GraphQL Schema definition

1type TournamentProgress {
2
3# The amount of progress that has been made in the tournament. This is not
4# exclusive to cheering in the channel.
5amount: Int! @deprecated( reason: "No longer supported" )
6
7# The milestones associated with the progress made. This is a list of rewards the
8# progress value will unlock.
9milestones: [Milestone!]! @deprecated( reason: "No longer supported" )
10
11}