Queries
Retrieve a list of scheduled tracks
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.
01query GetScheduledTracks($pathway_id: String!) {02 scheduledTracksForPathway(pathway_id: $pathway_id) {03 scheduled_tracks {04 id # can be used to unschedule the track05 track_definition_id06 scheduled_date07 title08 release_id09 created_date10 modified_date11 status12 }13 }14}
01{02 "pathway_id": "{{ PATHWAY_ID }}"03}