HummingBirdAnimeClient/src/API/Anilist/GraphQL/Mutations/UpdateAnimeListEntry.graphql

15 lines
202 B
JavaScript

mutation (
$id: Int,
$status: String,
$score: Int,
$progress: Int,
$repeat: Int
) {
SaveMediaListEntry (
id: $id
status: $status
scoreRaw: $score
progress: $progress
repeat: $repeat
)
}