Does the loop in Logic execute sequentially for each element or no?

Is the ‘loop’ transform in AIP Logic async or does it run sequentially for all the elements?

Hi Tanmay

In AIP Logic, the ‘loop’ feature runs all its iterations at the same time (asynchronously) if it’s just doing transformations without any actions. However, if your loop involves actions like ontology edits(eg, calling a typescript function), it will usually process the steps one after another (sequentially) to keep the data accurate and consistent. So, if you’re only doing transformations, the loop works in parallel, but if you include actions, expect it to run step-by-step sequentially.
Thanks!