OBJECT
Journey
Represents a journey.
link GraphQL Schema definition
1 type Journey { 2 3 # Unique identifier for the journey. 4 ID : 5 6 # User assigned to the journey. 7 User : 8 9 # Type of the journey. 10 JourneyType : 11 12 # Name of the journey. 13 String : 14 15 # Indicates if pre-onboarding access is enabled. 16 Boolean : 17 18 # Personal email associated with the journey. 19 String : 20 21 # Current status of the journey. 22 JourneyStatus : 23 24 # Steps included in the journey. 25 JourneyStep] : [ 26 27 }