OBJECT

HypeTrainLevel

The Hype Train level configuration, which includes information about level completion and associated rewards.

link GraphQL Schema definition

1type HypeTrainLevel {
2
3# The value of participation that will take to complete the level.
4goal: Int!
5
6# The level ID.
7id: ID!
8
9# The associated rewards for completing the level.
10rewards: [HypeTrainReward!]!
11
12# The value of the level, like Level 1, 2, etc. Can be configurable.
13value: Int!
14
15}