You can use the Sandbox interface to construct and execute queries and mutations, and browse documentation. It features a code editor with autocomplete, validation, and syntax error highlighting features.
Also see:
Steps to access the GraphQL sandbox
- Sign in to the Veritone platform at https://developer.veritone.com.
- Go to the Sandbox user interface at https://api.veritone.com/v3/graphql. You will automatically be authenticated through to the API and have access to live data for your organization.
- Try a simple query such as
me to explore the data you have access to.
query {
me {
id
name
# use <ctrl-space> to get a list of fields available at each level
}
}