Add anilist plugin (#69)
This commit is contained in:
21
source/plugins/anilist/queries/characters.graphql
Normal file
21
source/plugins/anilist/queries/characters.graphql
Normal 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
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user