Skip to main content

Update tracker

This page shows how to update a tracker using Animeshon's GraphQL gateway. To create the tracker check create a tracker's page.

Sample

Replace [TRACKER-NAME] with an existing tracker.

Replace [RESOURCE-NAME] with the resource associated with the tracker.

warning

The caller must be already authenticated.

tip

Visit https://animeshon.com/graphql to browse the GraphQL embedded documentation.

There is a single unified endpoint for Animeshon GraphQL queries and mutations: https://animeshon.com/graphql.

mutation {
createPlaylistItem(
input: {
parent: "[PLAYTLIST]"
item: { resource: "[RESOURCE-NAME]" }
}
) {
name
}
}
View on GitHub