Skip to content

bulkDeleteMongodbSources

Bulk Delete Sources Supported in m3.2.0-m4.2.0.

Arguments

Argument Type Description
input (required) BulkDeleteMosaicSourcesInput! Input for V2BulkDeleteMosaicSources.

Returns

MosaicAsyncResponse!

Sample

mutation BulkDeleteMongodbSources($input: BulkDeleteMosaicSourcesInput!) {
  bulkDeleteMongodbSources(input: $input) {
    data
    message
    returnCode
    status
  }
}
{
  "input": {
    "clusterUuid": "example-string",
    "sourceData": {
      "sourceNames": [
        "example-string"
      ]
    }
  }
}
{
  "data": {
    "bulkDeleteMongodbSources": {
      "data": "example-string",
      "message": "example-string",
      "returnCode": 0,
      "status": true
    }
  }
}