ENUM

JourneyStatus

Represents the status of a journey.

link GraphQL Schema definition

1enum JourneyStatus {
2
3# Journey is in draft state.
4DRAFT
5
6# Journey is currently ongoing.
7ONGOING
8
9# Journey has been completed.
10COMPLETED
11
12# Journey has been cancelled.
13CANCELLED
14}