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.

Screenshot of our GraphQL Playground in action

You can start using our GraphQL Playground using the Kublau dashboard:

  1. From your Kublau dashboard, go to Settings > Developer.

  2. In the API Keys section, copy the Token value of the Test Key.

  3. Open the HTTP Headers Tab in the lower left of the screen.

  4. 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?