Get all Doctors
POST
http://localhost:3000/graphqlQuery
query FindAllDoctors {
findAllDoctors {
doctors {
id
username
}
}
}
Request
None
Request samples
Responses
Success(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
object {0}
Example
{
"data": {
"findAllDoctors": {
"doctors": [
{
"id": 1,
"username": "ravi"
}
]
}
}
}
Last modified: 2 months ago