OBJECT
JourneyTemplateStep
Represents a step within a journey template.
link GraphQL Schema definition
1 type JourneyTemplateStep { 2 3 # Unique identifier for the journey template step. 4 ID : 5 6 # Name of the journey template step. 7 String : 8 9 # Description of the journey template step. 10 String : 11 12 # Event type that determines the start date relation. 13 JourneyStepRelationEventType : 14 15 # Adverb that modifies the start date relation event. 16 RelationEventAdverb : 17 18 # Step that determines the start date relation. 19 JourneyTemplateStep : 20 21 # Adverb that modifies the start date relation step. 22 RelationStepAdverb : 23 24 # Offset in days for the start date relation. 25 Int : 26 27 # Event type that determines the due date relation. 28 JourneyStepRelationEventType : 29 30 # Adverb that modifies the due date relation event. 31 RelationEventAdverb : 32 33 # Step that determines the due date relation. 34 JourneyTemplateStep : 35 36 # Adverb that modifies the due date relation step. 37 RelationStepAdverb : 38 39 # Offset in days for the due date relation. 40 Int : 41 42 # Identifier for the reusable step associated with the journey. 43 ID : 44 45 # List of tasks associated with the journey template step. 46 JourneyTemplateTask] : [ 47 48 }