Library Track Query Builder
The query builder allows you to quickly build queries for the Cyanite.ai API. You can execute the queries using GraphiQL.
tip
The query should help you get started easier.
For writing GraphQL operations for your application we recommend checking out the schema documentation.
We also have a classifier overview for the AudioAnalysisV6.
Classifier Data
GraphQL Query Run using GraphiQL
query LibraryTrackQuery($libraryTrackId: ID!) {
libraryTrack(id: $libraryTrackId) {
__typename
... on LibraryTrackNotFoundError {
message
}
... on LibraryTrack {
id
title
}
}
}