TransactionRollback
Undo database changes by rolling back a specific transaction, ensuring data integrity when modifications need to be reversed in the RushDB graph database.
Instructions
Rollback a database transaction
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| transactionId | Yes | Transaction ID |
Input Schema (JSON Schema)
{
"properties": {
"transactionId": {
"description": "Transaction ID",
"type": "string"
}
},
"required": [
"transactionId"
],
"type": "object"
}