Get all patients details
POST
http://localhost:3000/graphqlQuery
query GetAllPatientDetails {
getAllPatientDetails {
age
blood_group
health_issues
id
username
weight
}
}
Request
None
Request samples
Responses
Success(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
object {0}
Example
{
"data": {
"getAllPatientDetails": [
{
"age": 30,
"blood_group": "A",
"health_issues": [
"Asthama"
],
"id": 4,
"username": "olauber2",
"weight": 57
}
]
}
}
Last modified: 2 months ago