OBJECT

updateTestRunExampleStatus

link GraphQL Schema definition

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

link Example

The mutation below updates the status of a Test Run example.

mutation {
    updateTestRunExampleStatus(
        exampleId: "5bbd8ab0a3fe1b6fcdc3c737",
        status: "PASSED"
    ) {
        warnings
    }
}