Awell Health Developer Hub
Dev Hub

Scheduled tracks are tracks we know for certain will be activated in the future. A useful query to know what's upcoming in a pathway. The query returns a list of scheduled tracks. To see scheduled steps, use the scheduledSteps query.

Query

  • graphql
01query GetScheduledTracks($pathway_id: String!) {
02 scheduledTracksForPathway(pathway_id: $pathway_id) {
03 scheduled_tracks {
04 id # can be used to unschedule the track
05 track_definition_id
06 scheduled_date
07 title
08 release_id
09 created_date
10 modified_date
11 status
12 }
13 }
14}

Variables

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