OBJECT

JourneyStep

Represents a step in the journey.

link GraphQL Schema definition

1type JourneyStep {
2
3# Unique identifier for the journey step.
4id: ID
5
6# Name of the journey step.
7name: String
8
9# Description of the journey step.
10description: String
11
12# Fixed start date for the journey step.
13startDateFixedDate: Date
14
15# Event type related to the start date of the journey step.
16startDateRelationEventType: JourneyStepRelationEventType
17
18# Timing of the event related to the start date.
19startDateRelationEventAdverb: RelationEventAdverb
20
21# Related journey step for the start date.
22startDateRelationStep: JourneyStep
23
24# Timing of the related journey step for the start date.
25startDateRelationStepAdverb: RelationStepAdverb
26
27# Days offset for the start date relation.
28startDateRelationDaysOffset: Int
29
30# Fixed due date for the journey step.
31dueDateFixedDate: Date
32
33# Event type related to the due date of the journey step.
34dueDateRelationEventType: JourneyStepRelationEventType
35
36# Timing of the event related to the due date.
37dueDateRelationEventAdverb: RelationEventAdverb
38
39# Related journey step for the due date.
40dueDateRelationStep: JourneyStep
41
42# Timing of the related journey step for the due date.
43dueDateRelationStepAdverb: RelationStepAdverb
44
45# Days offset for the due date relation.
46dueDateRelationDaysOffset: Int
47
48# Tasks associated with the journey step.
49tasks: [JourneyTask]
50
51# Date when the journey step was completed.
52completedAt: Date
53
54}