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,21 @@
query FavoritesCharacters ($name: String, $page:Int) {
User(name: $name) {
favourites {
characters(page: $page) {
nodes {
name {
full
native
}
image {
medium
}
}
pageInfo {
currentPage
hasNextPage
}
}
}
}
}