HummingBirdAnimeClient/src/AnimeClient/API/Kitsu/Mutations/IncrementLibraryItem.graphql

12 lines
167 B
JavaScript
Raw Normal View History

2020-07-31 18:59:16 -04:00
mutation($id: ID!, $progress: Int) {
2020-08-17 10:24:17 -04:00
libraryEntry{
update(input: { id: $id, progress: $progress }) {
libraryEntry {
id
progress
status
}
2020-07-31 18:59:16 -04:00
}
}
}