[FA-27] Bookmark implementation

This commit is contained in:
gamer147
2026-01-19 00:01:16 -05:00
parent f67c5c610c
commit f8a45ad891
28 changed files with 1036 additions and 20 deletions

View File

@@ -0,0 +1,12 @@
mutation RemoveBookmark($input: RemoveBookmarkInput!) {
removeBookmark(input: $input) {
bookmarkPayload {
success
}
errors {
... on Error {
message
}
}
}
}

View File

@@ -0,0 +1,19 @@
mutation UpsertBookmark($input: UpsertBookmarkInput!) {
upsertBookmark(input: $input) {
bookmarkPayload {
success
bookmark {
id
chapterId
novelId
description
createdTime
}
}
errors {
... on Error {
message
}
}
}
}