HummingBirdAnimeClient/src/AnimeClient/API/Anilist/Queries/SyncUserList.graphql
Timothy J. Warren 3965f137e1
Some checks reported errors
timw4mail/HummingBirdAnimeClient/pipeline/head Something is wrong with the build of this commit
Move GraphQL queries up a level
2020-08-04 14:25:18 -04:00

28 lines
368 B
JavaScript

query ($name: String, $type: MediaType) {
MediaListCollection(userName: $name, type: $type) {
lists {
entries {
id
mediaId
score
progress
progressVolumes
repeat
private
notes
status
updatedAt
media {
id
idMal
title {
romaji
english
native
userPreferred
}
}
}
}
}
}