Playground
Learn how to use the GraphQL Playground to simplify your development workflow
As part of our platform we include a GraphQL Playground to better help you explore, test and build your integration to our API. It allows you to run queries directly against our API with syntax highlighting and autocomplete. It also allows you to explore the schema and types.

You can start using our GraphQL Playground using the Kublau dashboard:
From your Kublau dashboard, go to Settings > Developer.
In the API Keys section, copy the Token value of the Test Key.
Visit our GraphQL Playground.
Open the HTTP Headers Tab in the lower left of the screen.
Paste the following JSON replacing <ACCESS_TOKEN> with the one you copied in step 2.
{
"Authorization": "Bearer <ACCESS_TOKEN>"
}
Now you can start using the playground to make queries!
Paste the following query into the editor and click Play!
workspace {
id
name
}
Last updated
Was this helpful?