OBJECT
HypeTrainLevel
The Hype Train level configuration, which includes information about level completion and associated rewards.
link GraphQL Schema definition
1 type HypeTrainLevel { 2 3 #   The value of participation that will take to complete the level. 4 : Int!  5 6 #   The level ID. 7 : ID!  8 9 #   The associated rewards for completing the level. 10 : [HypeTrainReward!]!  11 12 #   The value of the level, like Level 1, 2, etc. Can be configurable. 13 : Int!  14 15 }