OBJECT

deletePrecondition

link GraphQL Schema definition

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

link Example

The mutation below will delete the Precondition with issue id "12345"

mutation {
    deletePrecondition(issueId: "12345")
}