OBJECT

Journey

Represents a journey.

link GraphQL Schema definition

1type Journey {
2
3# Unique identifier for the journey.
4id: ID
5
6# User assigned to the journey.
7assignee: User
8
9# Type of the journey.
10journeyType: JourneyType
11
12# Indicates if pre-onboarding access is enabled.
13isPreonboardingAccessEnabled: Boolean
14
15# Personal email associated with the journey.
16personalEmail: String
17
18# Current status of the journey.
19status: JourneyStatus
20
21# Steps included in the journey.
22steps: [JourneyStep]
23
24}