BulkDeleteRecords
Remove multiple database records that match specific search conditions in RushDB. Use this tool to clean up data by deleting records based on defined criteria and optional labels.
Instructions
Delete multiple records matching a query
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| labels | No | Filter by record labels | |
| transactionId | No | Optional transaction ID for atomic bulk deletion | |
| where | Yes | Search conditions for records to delete |
Input Schema (JSON Schema)
{
"properties": {
"labels": {
"description": "Filter by record labels",
"items": {
"type": "string"
},
"type": "array"
},
"transactionId": {
"description": "Optional transaction ID for atomic bulk deletion",
"type": "string"
},
"where": {
"description": "Search conditions for records to delete",
"type": "object"
}
},
"required": [
"where"
],
"type": "object"
}