Commit point & rollback in Wix-dataset API).

Is there a commit point similar to other standard databases. I need this to secure the data collections are actually updated only after a certain logic point is reached (logical unit)?

Alternatively, is there a rollback clause I can use, in case I see that the data integrity is wrong from the JS business logic point of view?

1 Like

Nope, does not exist. Wix DB is “based on” MongoDb and this DB, belonging to the class of non-SQL/non-relational db´s does not offer this kind of actions (commit/rollback).

EDIT: re-checked my own answer. Found this one: MongoDB Drops ACID | MongoDB Blog
Maybe an idea for Corvid dev´s to implement?