OBJECT

updateTestRunStatus

link GraphQL Schema definition

1Mutation updateTestRunStatus {
2
3# Mutation used to update the status of a Test Run.
4#
5# Arguments
6# id: the id of the Test Run.
7# status: the id or name of the status of the Test Run.
8updateTestRunStatus(id: String!, status: String!): String
9
10}

link Example

The mutation below updates the status of a Test Run.

mutation {
    updateTestRunStatus( id: "5acc7ab0a3fe1b6fcdc3c737", status: "PASSED")
}