Mutations
Update the patient's profile
- graphql
01mutation UpdatePatient($input: UpdatePatientInput!) {02 updatePatient(input: $input) {03 patient {04 id05 }06 }07}
Have a look at the validation section of the createPatient mutation to learn more about in what format values for certain variables should be passed.
- json
01{02 "input": {03 "patient_id": "{{PATIENT_ID}}",04 "profile": {...}05 }06}