Queries
Get a patient's profile
- graphql
01query GetPatient($patient_id: String!) {02 patient(id: $patient_id) {03 patient {04 id05 profile {06 name07 first_name08 last_name09 preferred_language10 birth_date11 sex12 patient_code13 address {14 city15 country16 state17 street18 zip19 }20 email21 national_registry_number22 mobile_phone23 phone24 }25 }26 }27}
- json
01{02 "patient_id": "{{PATIENT_ID}}"03}