OBJECT

getStatuses

link GraphQL Schema definition

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

link Example

The Query below returns multiple Status

{
    getStatuses {
        name
        description
        final
        color
    }
}