OBJECT
getStepStatus
link GraphQL Schema definition
1 Query 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 7 (: String): StepStatus 8 9 }
link Example
The Query below returns a Status
{
getStepStatus( name: "PASSED") {
name
description
color
}
}