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