May i confirm whether server side storage write and delete operation is transactional?

Based on the concept doc:

A user can write one or more objects which will be stored in the database server. These objects will be written in a single transaction which guarantees the writes succeed together.

and the code sample is client SDK

may I ask whether the server’s corresponding API also guarantee the transaction for multiple requests in a single write/delete request?

such as JS runtime: Function Reference - Heroic Labs Documentation

Yes, all writes within a storageWrite, storageDelete or multiUpdate calls are transactional.

1 Like