OBJECT
JourneyType
Journey Type Object
link GraphQL Schema definition
1 type JourneyType { 2 3 # Unique identifier for the journey type. 4 : ID 5 6 # Name of the journey type. 7 : String 8 9 # Description of the journey type. 10 : String 11 12 # Key representing the journey type. 13 : JourneyTypeKey 14 15 # Icon associated with the journey type. 16 : String 17 18 # Date when the journey type was archived. 19 : Date 20 21 }