Provided that I have Worker and Admin updating the collection at the same time. How do I ensure that Admin always win?
Admin request this Record.update({testField: "test}, {amount : 200},...)
Worker request this Record.update({testField: "test}, {amount : 999},...)
How to ensure that the final amount will always be 200 if they press Update at the same time?