Files
metrics/source/plugins/anilist/queries/statistics.graphql
2021-01-24 21:50:56 +01:00

25 lines
377 B
GraphQL

query Statistics ($name: String) {
User(name: $name) {
id
name
about
statistics {
anime {
count
minutesWatched
episodesWatched
genres(limit: 4) {
genre
}
}
manga {
count
chaptersRead
volumesRead
genres(limit: 4) {
genre
}
}
}
}
}