diff options
Diffstat (limited to 'bridge/github/export_query.go')
-rw-r--r-- | bridge/github/export_query.go | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/bridge/github/export_query.go b/bridge/github/export_query.go index ff03df34..a527399e 100644 --- a/bridge/github/export_query.go +++ b/bridge/github/export_query.go @@ -33,8 +33,13 @@ type updateIssueCommentMutation struct { IssueComment struct { ID string `graphql:"id"` URL string `graphql:"url"` - } `graphql:"addComment(input:$input)"` + } `graphql:"updateIssueComment(input:$input)"` +} + +type removeLabelsFromLabelableMutation struct { + AddLabels struct{} `graphql:"removeLabelsFromLabelable(input:$input)"` } -type removeLabelsMutation struct { +type addLabelsToLabelableMutation struct { + RemoveLabels struct{} `graphql:"addLabelsToLabelable(input:$input)"` } |