mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-15 18:23:08 +03:00
19 lines
310 B
GraphQL
19 lines
310 B
GraphQL
"""Label for a bug."""
|
|
type Label {
|
|
"""The name of the label."""
|
|
name: String!
|
|
"""Color of the label."""
|
|
color: Color!
|
|
}
|
|
|
|
type LabelConnection {
|
|
edges: [LabelEdge!]!
|
|
nodes: [Label!]!
|
|
pageInfo: PageInfo!
|
|
totalCount: Int!
|
|
}
|
|
|
|
type LabelEdge {
|
|
cursor: String!
|
|
node: Label!
|
|
} |