Skip to content

Latest commit

 

History

History
41 lines (36 loc) · 651 Bytes

File metadata and controls

41 lines (36 loc) · 651 Bytes
title description
Get scheduled steps
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.

Query

query GetScheduledSteps($pathway_id: String!) {
  scheduledSteps(pathway_id: $pathway_id) {
    steps {
      id
      parent_id
      name
      label
      start_date
      status
      stakeholders {
        id
        name
      }
      context {
        instance_id
        pathway_id
        step_id
        track_id
      }
    }
  }
}

Variables

{
  "pathway_id": "{{ PATHWAY_ID }}"
}