label.graphql

 1"""Label for a bug."""
 2type Label {
 3    """The name of the label."""
 4    name: String!
 5    """Color of the label."""
 6    color: Color!
 7}
 8
 9type LabelConnection {
10    edges: [LabelEdge!]!
11    nodes: [Label!]!
12    pageInfo: PageInfo!
13    totalCount: Int!
14}
15
16type LabelEdge {
17    cursor: String!
18    node: Label!
19}