SetLabel.graphql

 1mutation SetLabel($input: ChangeLabelInput) {
 2  changeLabels(input: $input) {
 3    results {
 4      status
 5      label {
 6        name
 7        color {
 8          R
 9        }
10        color {
11          G
12        }
13        color {
14          B
15        }
16      }
17    }
18  }
19}