OBJECT

StepStatus

Step Status Type

link GraphQL Schema definition

1type StepStatus {
2
3# Name of the Status.
4name: String
5
6# Description of the Status.
7description: String
8
9# Color of the Status.
10color: String
11
12# The test status to which the step status is mapped to.
13testStatus: Status
14
15}