18 lines
296 B
GraphQL
18 lines
296 B
GraphQL
mutation RemoveFromReadingList($input: RemoveFromReadingListInput!) {
|
|
removeFromReadingList(input: $input) {
|
|
readingListPayload {
|
|
success
|
|
readingList {
|
|
id
|
|
name
|
|
itemCount
|
|
}
|
|
}
|
|
errors {
|
|
... on Error {
|
|
message
|
|
}
|
|
}
|
|
}
|
|
}
|