ENUM

HypeTrainDifficulty

The difficulty a Hype Train can be set to.

link GraphQL Schema definition

1enum HypeTrainDifficulty {
2
3# Easy, the easiest difficulty level.
4EASY
5
6# Medium, the middle difficulty level.
7MEDIUM
8
9# Hard, the hard difficulty level.
10HARD
11
12# Super Hard, the harder difficulty level.
13SUPER_HARD
14
15# Insane, the hardest difficulty level.
16INSANE
17
18# An unknown difficulty.
19UNKNOWN
20}