Checking the Parse GraphQL API health
You want to check the Parse Server backend health through the GraphQL API.
Using the Parse GraphQL API, you can check the backend health by calling the health query.
query Health {
health
}
{
"data": {
"health": true
}
}