GraphQL Playground
Visually explore schema and develop
GraphQL Playground is a graphical, interactive, in-browser GraphQL IDE, created by Prisma and based on GraphiQL.
Using the GraphQL Playground
To run a query, input query on the left pane and then click the Play button. Query results will be displayed on the right pane.
Sample query
Below is a sample query to get you started.
query {
version
info
}
Sample response
{
"data": {
"version": "1.0.0",
"info": "CyberWire API"
}
}
Schema & Docs
To explore the GraphQL schema, use the Docs and Schema tabs on the right.