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