Anton
V.
Projects and
blogs
Random
GraphQL Client
GraphQL Client
GraphQL endpoint
Only the public HTTPS endpoints with CORS enabled are supported.
GraphQL query
query { allPeople { people { name species { name } } } }
1
query
{
2
allPeople
{
3
people
{
4
name
5
species
{
6
name
7
}
8
}
9
}
10
}
The query to be executed.
Run query
Clear
Response
Press Run query to execute the query.
GraphQL Client