mirror of
https://github.com/Benexl/FastAnime.git
synced 2025-12-05 20:40:09 -08:00
33 lines
427 B
GraphQL
33 lines
427 B
GraphQL
mutation (
|
|
$mediaId: Int
|
|
$scoreRaw: Int
|
|
$repeat: Int
|
|
$progress: Int
|
|
$status: MediaListStatus
|
|
) {
|
|
SaveMediaListEntry(
|
|
mediaId: $mediaId
|
|
scoreRaw: $scoreRaw
|
|
progress: $progress
|
|
repeat: $repeat
|
|
status: $status
|
|
) {
|
|
id
|
|
status
|
|
mediaId
|
|
score
|
|
progress
|
|
repeat
|
|
startedAt {
|
|
year
|
|
month
|
|
day
|
|
}
|
|
completedAt {
|
|
year
|
|
month
|
|
day
|
|
}
|
|
}
|
|
}
|