Using make and GraphQL to update dependency column looping issue

Hello everyone,

I am building out a system that will look like this in the subitems - specifically updating the “dependent on” column focusing on adding the previous Op to the next one. As you can see in the picture this is how I need it to look

My current make scenario looks like this

Note that the webhook that kicks off this scenario reads each time a subitem is created so maybe this isn’t the most optimal webhook situation for this scenario?


blueprint (1).json (49.5 KB)

Since the data I need is coming out from an array I have put it into an iterator to read the data correctly

And this is how my GraphQL mutation looks
image

The problem I am running into now is that once it updates the column it will keep looping and updating the column with each bundle that was sent through the iterator.

Does anyone know how to sequentially process this bundle so that I can achieve my desired outcome?