Transaction Operations
Transaction creation, commit, and rollback
Start Transaction
Start a new database transaction and return a transaction ID. Subsequent document operations can join this transaction via the `transactionId` parameter.
Commit Transaction
Commit the specified transaction, making all operations within the transaction effective.
Rollback Transaction
Rollback the specified transaction, undoing all operations within the transaction.