Add anilist plugin (#69)
This commit is contained in:
50
source/plugins/anilist/queries/medias.graphql
Normal file
50
source/plugins/anilist/queries/medias.graphql
Normal file
@@ -0,0 +1,50 @@
|
||||
query Medias ($name: String, $type: MediaType) {
|
||||
MediaListCollection(userName: $name, type: $type) {
|
||||
lists {
|
||||
name
|
||||
isCustomList
|
||||
entries {
|
||||
...mediaListEntry
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fragment mediaListEntry on MediaList {
|
||||
status
|
||||
progress
|
||||
progressVolumes
|
||||
score
|
||||
startedAt {
|
||||
year
|
||||
month
|
||||
day
|
||||
}
|
||||
completedAt {
|
||||
year
|
||||
month
|
||||
day
|
||||
}
|
||||
media {
|
||||
title {
|
||||
romaji
|
||||
english
|
||||
native
|
||||
}
|
||||
description
|
||||
type
|
||||
status(version: 2)
|
||||
episodes
|
||||
volumes
|
||||
chapters
|
||||
averageScore
|
||||
countryOfOrigin
|
||||
genres
|
||||
coverImage {
|
||||
medium
|
||||
}
|
||||
startDate {
|
||||
year
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user