OBJECT

getStepStatus

link GraphQL Schema definition

1Query getStepStatus {
2
3# Returns a Status by Test Run Step Status name.
4#
5# Arguments
6# name: the status name of test run step status
7getStepStatus(name: String): StepStatus
8
9}

link Example

The Query below returns a Status

{
    getStepStatus( name: "PASSED") {
        name
        description
        color
    }
}