get appointment for doctor
POST
http://localhost:3000/graphqlQuery
query GetAppointmentsForDoctor($doctorUserId: Float!) {
getAppointmentsForDoctor(doctor_user_id: $doctorUserId) {
fees
id
ivr_app_id
patient_complaint
patient_current_weight
status
visit_type
}
}
Variables
{
"doctorUserId": 1
}
Request
None
Request samples
Responses
Success(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
object {0}
Example
{
"data": {
"getAppointmentsForDoctor": [
{
"fees": 500,
"id": 8,
"ivr_app_id": "ivr",
"patient_complaint": "pain",
"patient_current_weight": 98,
"status": "scheduled",
"visit_type": "online"
}
]
}
}
Last modified: 2 months ago