Get Viewer trackers
This page shows how to get all Viewer
's trackers.
This request is useful when retrieving tracker names to Add Tracker Items.
Sample
Run the following query.
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.
query {
viewer {
trackers(pageSize: 10) {
nextPageToken
trackers {
name
completedResources {
... on GraphGeneric {
name
}
}
progressPercentage
resource {
... on GraphGeneric {
name
}
}
}
}
}
}