OBJECT

getStepStatuses

link GraphQL Schema definition

1Query getStepStatuses {
2
3# Returns all Test Run Step Status.
4#
5# Arguments
6# projectId: the project id to get step statuses for. If not provided, returns global step statuses
7getStepStatuses(projectId: String): [StepStatus]
8
9}

link Example

The Query below returns multiple Status

{
    getStepStatuses {
        name
        description
        color
    }
}