OBJECT

TestStatusType

Test Status Type

link GraphQL Schema definition

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