summaryrefslogtreecommitdiffstatshomepage
path: root/webui/src/pages/bug/labels/SetLabel.graphql
blob: e2e637a0399bb6954eedd662e1e8018c0dc9d4e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
mutation SetLabel($input: BugChangeLabelInput) {
  bugChangeLabels(input: $input) {
    results {
      status
      label {
        name
        color {
          R
        }
        color {
          G
        }
        color {
          B
        }
      }
    }
  }
}