OBJECT

deleteTestSet

link GraphQL Schema definition

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

link Example

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

mutation {
    deleteTestSet(issueId: "12345")
}