HummingBirdAnimeClient/src/AnimeClient/API/Anilist/GraphQL/Queries/SyncUserList.graphql
Timothy J Warren 9924793a49
Some checks failed
timw4mail/HummingBirdAnimeClient/pipeline/head There was a failure building this commit
Move source code to sub folder so we can re-integrate ion
2020-03-11 22:11:00 -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
}
}
}
}
}
}