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