OBJECT
JourneyStep
Represents a step in the journey.
link GraphQL Schema definition
1 type JourneyStep { 2 3 # Unique identifier for the journey step. 4 : ID 5 6 # Name of the journey step. 7 : String 8 9 # Description of the journey step. 10 : String 11 12 # Fixed start date for the journey step. 13 : Date 14 15 # Event type related to the start date of the journey step. 16 : JourneyStepRelationEventType 17 18 # Timing of the event related to the start date. 19 : RelationEventAdverb 20 21 # Related journey step for the start date. 22 : JourneyStep 23 24 # Timing of the related journey step for the start date. 25 : RelationStepAdverb 26 27 # Days offset for the start date relation. 28 : Int 29 30 # Fixed due date for the journey step. 31 : Date 32 33 # Event type related to the due date of the journey step. 34 : JourneyStepRelationEventType 35 36 # Timing of the event related to the due date. 37 : RelationEventAdverb 38 39 # Related journey step for the due date. 40 : JourneyStep 41 42 # Timing of the related journey step for the due date. 43 : RelationStepAdverb 44 45 # Days offset for the due date relation. 46 : Int 47 48 # Tasks associated with the journey step. 49 : [JourneyTask] 50 51 # Date when the journey step was completed. 52 : Date 53 54 }