get all appointment for patient
POST
http://localhost:3000/graphqlQuery
query GetAppointmentsForPatients($patientUserId: Float!) {
getAppointmentsForPatients(patient_user_id: $patientUserId) {
fees
id
ivr_app_id
patient_complaint
patient_current_weight
status
visit_type
}
}
Variables
{
"patientUserId": 3
}
Request
None
Request samples
Responses
Success(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
object {0}
Example
{
"data": {
"getAppointmentsForPatients": [
{
"fees": 450,
"id": 1,
"ivr_app_id": "null",
"patient_complaint": "insomnia",
"patient_current_weight": 43,
"status": "scheduled",
"visit_type": "offline"
}
]
}
}
Last modified: 2 months ago