Queries
Retrieve a list of scheduled steps
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.
- graphql
01query GetScheduledSteps($pathway_id: String!) {02 scheduledSteps(pathway_id: $pathway_id) {03 steps {04 id05 parent_id06 name07 label08 start_date09 status10 stakeholders {11 id12 name13 }14 context {15 instance_id16 pathway_id17 step_id18 track_id19 }20 }21 }22}
- json
01{02 "pathway_id": "{{ PATHWAY_ID }}"03}