OBJECT

deleteTestExecution

link GraphQL Schema definition

1Mutation deleteTestExecution {
2
3# Mutation used to delete a Test Execution.
4#
5# Arguments
6# issueId: the issue id of the Test Execution.
7deleteTestExecution(issueId: String!): String
8
9}

link Example

The mutation below will delete the Test Execution with id "12345".

mutation {
    deleteTestExecution(issueId: "12345")
}