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,16 @@
query Repository {
user(login: "$login") {
repository(name: "$repository") {
$type(first: 100) {
pageInfo {
hasNextPage
endCursor
}
nodes {
avatarUrl(size: 24)
login
}
}
}
}
}