Queries
Get baseline info of the pathway
If your pathway has baseline info or data points, you can query those data points and their values via the Awell API.
Configure baseline data points
- graphql
01query GetBaselineInfo($pathway_id: String!) {02 baselineInfo(pathway_id: $pathway_id) {03 baselineDataPoints {04 value05 definition {06 id07 title08 category09 key10 valueType11 possibleValues {12 label13 value14 }15 unit16 range {17 min18 max19 }20 }21 }22 }23}
- json
01{02 "pathway_id": "{{PATIENT_PATHWAY_ID}}"03}