ListLabels.graphql

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