OBJECT

deleteTest

link GraphQL Schema definition

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

link Example

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

mutation {
    deleteTest(issueId: "12345")
}