aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/pages/bug/labels/SetLabel.graphql
diff options
context:
space:
mode:
Diffstat (limited to 'webui/src/pages/bug/labels/SetLabel.graphql')
-rw-r--r--webui/src/pages/bug/labels/SetLabel.graphql13
1 files changed, 13 insertions, 0 deletions
diff --git a/webui/src/pages/bug/labels/SetLabel.graphql b/webui/src/pages/bug/labels/SetLabel.graphql
new file mode 100644
index 00000000..44dfae11
--- /dev/null
+++ b/webui/src/pages/bug/labels/SetLabel.graphql
@@ -0,0 +1,13 @@
+mutation SetLabel($input: ChangeLabelInput) {
+ changeLabels(input: $input) {
+ results{
+ status,
+ label{
+ name,
+ color{R},
+ color{G},
+ color{B}
+ }
+ }
+ }
+}