BulkDeleteRecords
Remove multiple records simultaneously from a specified collection in Astra DB using a straightforward array of record IDs.
Instructions
Delete multiple records from a collection at once
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collectionName | Yes | Name of the collection containing the records | |
recordIds | Yes | Array of record IDs to delete |
Input Schema (JSON Schema)
{
"properties": {
"collectionName": {
"description": "Name of the collection containing the records",
"type": "string"
},
"recordIds": {
"description": "Array of record IDs to delete",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"collectionName",
"recordIds"
],
"type": "object"
}