Queries
Get all published pathway definitions for your organization
Retrieve the full list of published pathway definitions including the title, version, baseline data point definitions, and track definitions.
- graphql
01query GetPublishedPathwayDefinitions {02 publishedPathwayDefinitions {03 publishedPathwayDefinitions {04 id05 title06 version07 data_point_definitions { # previously dataPointDefinitions08 id09 key10 category11 valueType12 optional13 range {14 min15 max16 }17 unit18 possibleValues {19 label20 value21 }22 }23 track_definitions {24 id25 title26 can_trigger_manually27 }28 }29 }30}
This boolean field indicates that the track can be triggered manually using the startTrack or scheduleTrack mutations.
The id
of the track is the track reference required for these mutations, and does not change between published pathway versions. You will also need the id of the specific patient pathway the track is (scheduled) to be added to.