OBJECT

deleteTestPlan

link GraphQL Schema definition

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

link Example

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

mutation {
    deleteTestPlan(issueId: "12345")
}