9 lines
144 B
JavaScript
9 lines
144 B
JavaScript
|
mutation($id: ID!, $progress: Int) {
|
||
|
updateLibraryEntry(input: { id: $id, progress: $progress }) {
|
||
|
libraryEntry {
|
||
|
id
|
||
|
progress
|
||
|
}
|
||
|
}
|
||
|
}
|