ENUM

JourneyStatus

Possible values for the status of a Journey

link GraphQL Schema definition

1enum JourneyStatus {
2
3# Journey can be enrolled in now
4AVAILABLE
5
6# Journey is CLAIMED when the user claims at least 1 journey offer
7CLAIMED
8
9# Journey has expired and is no longer available
10EXPIRED
11
12# Journey is not yet available
13FUTURE
14}