Awell Health Developer Hub
Developer Hub

Request

Query

  • graphql
01query GetCalculationResults($pathway_id: String!, $activity_id: String!) {
02 calculationResults(pathway_id: $pathway_id, activity_id: $activity_id) {
03 result {
04 status
05 subresult_id
06 unit
07 value
08 value_type
09 }
10 }
11}

Variables

  • json
01{
02 "pathway_id": "{{ PATHWAY_ID }}",
03 "activity_id": "{{ ACTIVITY_ID }}"
04}