Mutation
mutation DeleteWorkflowRule($input: DeleteWorkflowRuleInput!) {
deleteWorkflowRule(input: $input) {
error {
message
type
code
fields {
field
message
type
}
}
}
}Variables
{
"input": {
"workflowRuleId": "id"
}
}Response
{
"data": {
"deleteWorkflowRule": {
"error": {
"message": "string",
"type": "VALIDATION",
"code": "string",
"fields": [
{
"field": "string",
"message": "string",
"type": "VALIDATION"
}
]
}
}
}
}Mutations
deleteWorkflowRule
Permanently delete a workflow rule. This action cannot be undone.
MUTATION
deleteWorkflowRule(input: DeleteWorkflowRuleInput!): DeleteWorkflowRuleOutput!Arguments
input
required
Returns
error
Mutation
mutation DeleteWorkflowRule($input: DeleteWorkflowRuleInput!) {
deleteWorkflowRule(input: $input) {
error {
message
type
code
fields {
field
message
type
}
}
}
}Variables
{
"input": {
"workflowRuleId": "id"
}
}Response
{
"data": {
"deleteWorkflowRule": {
"error": {
"message": "string",
"type": "VALIDATION",
"code": "string",
"fields": [
{
"field": "string",
"message": "string",
"type": "VALIDATION"
}
]
}
}
}
}Was this page helpful?

