"""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! } enum LabelChangeStatus { ADDED REMOVED DUPLICATE_IN_OP ALREADY_SET DOESNT_EXIST } type LabelChangeResult { """The source label.""" label: Label! """The effect this label had.""" status: LabelChangeStatus! }