Once you have started the server via Visual Studio you can access the graphql query window with https://localhost:5001/ui/playground
Alternatively you can start it via the command line
dotnet run --project HealthCheckerTry this basic query to confirm everything is working
{
hello
}
It should respond with
{
"data": {
"hello": "world"
}
}
Another sample query:
{
servers {
id
name
healthCheckUri
status
}
}