Object Edits Dropped out user Facing Error

QQ on ontology edit functions. If i have an ontology edit function that creates objects iteratively, and I’ve created 500 objects, if on the 501 object creation loop we throw a user facing error, are all the first 500 object edits/creations persisted or do they all drop?

From my understanding of your question.

Using a typescript function to do those modifications. If it fails the object 501, all others are applied.

The same for automations, If the automation for the object 501 fails, all others are applied.

Because in this cases they are being build sequentially.

For x of x.list:

   Create the object/make the modification


If you would gather all objects and then make the changes maybe that it would contribute to fail all. But I believe that’s not the case :slight_smile: