OBJECT

TestLabel

A test label with metadata needed for rendering.

link GraphQL Schema definition

1type TestLabel {
2
3# The title of the test label.
4title: String!
5
6# The color variant of the label (e.g., 'dim', 'danger', 'warning', 'success',
7# 'primary').
8# This determines the visual appearance/color of the label.
9variant: String!
10
11}