OBJECT

Status

Status Type

link GraphQL Schema definition

1type Status {
2
3# Name of the Status.
4name: String
5
6# Description of the Status.
7description: String
8
9# Whether the Status is final or not.
10final: Boolean
11
12# Color of the Status.
13color: String
14
15# Coverage mapping of the Status.
16coverageStatus: String
17
18}