ENUM

TutorialState

TutorialState represents the possible states of the user's viewing of the mod view tutorial.

link GraphQL Schema definition

1enum TutorialState {
2
3# DISMISSED occurs when a user dismisses the tutorial.
4DISMISSED
5
6# SEEN occurs when a user has seen every step in a tutorial.
7SEEN
8
9# UNSEEN is the initial state, before a user has either dismissed or viewed the
10# tutorial entirely.
11UNSEEN
12}