DeleteRecord
Remove a specific record from the RushDB database using its unique identifier. Supports optional transaction IDs for atomic deletion operations.
Instructions
Delete a record from the database (alias of DeleteRecordById)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| recordId | Yes | ID of the record to delete | |
| transactionId | No | Optional transaction ID for atomic deletion |
Input Schema (JSON Schema)
{
"properties": {
"recordId": {
"description": "ID of the record to delete",
"type": "string"
},
"transactionId": {
"description": "Optional transaction ID for atomic deletion",
"type": "string"
}
},
"required": [
"recordId"
],
"type": "object"
}