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# Name of the journey.
13name: String
14
15# Indicates if pre-onboarding access is enabled.
16isPreonboardingAccessEnabled: Boolean
17
18# Personal email associated with the journey.
19personalEmail: String
20
21# Current status of the journey.
22status: JourneyStatus
23
24# Steps included in the journey.
25steps: [JourneyStep]
26
27}