ListLabels.graphql

 1query ListLabels {
 2  repository {
 3    name
 4    validLabels {
 5      nodes {
 6        name
 7        color {
 8          R
 9          G
10          B
11        }
12      }
13    }
14  }
15}