Skip to content

deleteIntegrations

Delete a batch of integrations.

Arguments

Argument Type Description
input (required) DeleteIntegrationsInput! Delete integrations input.

Returns

Void

Sample

mutation DeleteIntegrations($input: DeleteIntegrationsInput!) {
  deleteIntegrations(input: $input)
}
{
  "input": {
    "ids": [
      0
    ]
  }
}
{
  "data": {
    "deleteIntegrations": "example-string"
  }
}