Awell Health Developer Hub
Developer Hub

Scheduled steps are steps we know for certain will be activated in the future. A useful query to know what's upcoming in a pathway.

Query

  • graphql
01query GetScheduledSteps($pathway_id: String!) {
02 scheduledSteps(pathway_id: $pathway_id) {
03 steps {
04 id
05 parent_id
06 name
07 label
08 start_date
09 status
10 stakeholders {
11 id
12 name
13 }
14 context {
15 instance_id
16 pathway_id
17 step_id
18 track_id
19 }
20 }
21 }
22}

Variables

  • json
01{
02 "pathway_id": "{{ PATHWAY_ID }}"
03}