mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
add merge highlight graphql file
This commit is contained in:
parent
51d6c3d31c
commit
d0ceda4489
1 changed files with 23 additions and 0 deletions
23
android/Omnivore/app/src/main/graphql/MergeHighlight.graphql
Normal file
23
android/Omnivore/app/src/main/graphql/MergeHighlight.graphql
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
mutation MergeHighlight($input: MergeHighlightInput!) {
|
||||
mergeHighlight(input: $input) {
|
||||
... on MergeHighlightSuccess {
|
||||
highlight {
|
||||
id
|
||||
shortId
|
||||
quote
|
||||
prefix
|
||||
suffix
|
||||
patch
|
||||
createdAt
|
||||
updatedAt
|
||||
annotation
|
||||
sharedAt
|
||||
createdByMe
|
||||
}
|
||||
overlapHighlightIdList
|
||||
}
|
||||
... on MergeHighlightError {
|
||||
errorCodes
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue