summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/boards/graphql/issue_set_labels.mutation.graphql
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/boards/graphql/issue_set_labels.mutation.graphql')
-rw-r--r--app/assets/javascripts/boards/graphql/issue_set_labels.mutation.graphql15
1 files changed, 15 insertions, 0 deletions
diff --git a/app/assets/javascripts/boards/graphql/issue_set_labels.mutation.graphql b/app/assets/javascripts/boards/graphql/issue_set_labels.mutation.graphql
new file mode 100644
index 00000000000..3c5f4b3e3bd
--- /dev/null
+++ b/app/assets/javascripts/boards/graphql/issue_set_labels.mutation.graphql
@@ -0,0 +1,15 @@
+mutation issueSetLabels($input: UpdateIssueInput!) {
+ updateIssue(input: $input) {
+ issue {
+ labels {
+ nodes {
+ id
+ title
+ color
+ description
+ }
+ }
+ }
+ errors
+ }
+}