Add anilist plugin (#69)

This commit is contained in:
Simon Lecoq
2021-01-24 21:50:56 +01:00
committed by GitHub
parent 418b86d34c
commit 81b7414b2a
19 changed files with 828 additions and 7 deletions

View File

@@ -0,0 +1,25 @@
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
}
}
}
}
}