add merge highlight graphql file

This commit is contained in:
Satindar Dhillon
2022-11-07 15:57:55 -08:00
parent 51d6c3d31c
commit d0ceda4489

View 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
}
}
}