HummingBirdAnimeClient/src/AnimeClient/API/Anilist/Mutations/UpdateMediaListEntry.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

28 lines
349 B
JavaScript

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