20 lines
312 B
GraphQL
20 lines
312 B
GraphQL
mutation UpsertBookmark($input: UpsertBookmarkInput!) {
|
|
upsertBookmark(input: $input) {
|
|
bookmarkPayload {
|
|
success
|
|
bookmark {
|
|
id
|
|
chapterId
|
|
novelId
|
|
description
|
|
createdTime
|
|
}
|
|
}
|
|
errors {
|
|
... on Error {
|
|
message
|
|
}
|
|
}
|
|
}
|
|
}
|