OBJECT

JourneyType

Journey Type Object

link GraphQL Schema definition

1type JourneyType {
2
3# Unique identifier for the journey type.
4id: ID
5
6# Name of the journey type.
7name: String
8
9# Description of the journey type.
10description: String
11
12# Key representing the journey type.
13key: JourneyTypeKey
14
15# Icon associated with the journey type.
16icon: String
17
18# Date when the journey type was archived.
19archivedAt: Date
20
21}