HummingBirdAnimeClient/src/AnimeClient/API/Kitsu/Mutations/IncrementLibraryItem.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

10 lines
154 B
JavaScript

mutation($id: ID!, $progress: Int) {
updateLibraryEntry(input: { id: $id, progress: $progress }) {
libraryEntry {
id
progress
status
}
}
}