OBJECT

resetTestRun

link GraphQL Schema definition

1Mutation resetTestRun {
2
3# Mutation used to reset the Test Run. This will load the new test definition and delete the current execution data.
4#
5# Arguments
6# id: the id of the Test Run.
7resetTestRun(id: String!): String
8
9}

link Example

The mutation below resets the Test Run.

mutation {
    resetTestRun( id: "5acc7ab0a3fe1b6fcdc3c737")
}