[FA-24] Reading lists
All checks were successful
CI / build-backend (pull_request) Successful in 1m32s
CI / build-frontend (pull_request) Successful in 42s

This commit is contained in:
gamer147
2026-01-19 22:06:34 -05:00
parent 98ae4ea4f2
commit 48ee43c4f6
34 changed files with 2607 additions and 2 deletions

View File

@@ -0,0 +1,19 @@
mutation UpdateReadingList($input: UpdateReadingListInput!) {
updateReadingList(input: $input) {
readingListPayload {
success
readingList {
id
name
description
itemCount
createdTime
}
}
errors {
... on Error {
message
}
}
}
}