Comment on page
Exploring our API
We have an API explorer and playground.
We have an API explorer (GraphiQL) where you can start to explore our queries and mutations.
Types
To drill down to details about any type, pass in the name of the type, for example:
query {
__type(name: "Card") {
name
kind
description
fields {
name
}
}
}
The explorer is useful while you are discovering our public queries without any authentication.
Note that the introspection query is the only GET request you’ll run in GraphQL. If you’re passing a body, the GraphQL request method is POST, whether it’s a query or a mutation.
Last modified 2yr ago