Hi everybody
I’m currently working on a wizard like form. Basically, with every step (i use the multi-step form) more data is collected. To make the submit on the final step (Insert call to Supabase) as clean as possible, my idea was to bring the data in the form process into a well-structured format.
The problem is, that when I try to partially update the “main” object. It doesn’t get updated.
These are the current workflows I set up:
This is the initial BookingObject that i create based on the information on the first step. I added there an empty array to make this available to be updated in the second step.
On the second step, I get first the values from each input field and create an array (i know this step is currently kind of redundant but I want to make the form more flexible in the future and therefore this design decision).
Also in this workflow, I want to update the object from the first form step with the just created array. But when trying this it always stays empty. (see screenshots for the selected path etc.)
Path:
Update value
(BTW: I also tried to just add the whole array without the for loop)
Is this even possible to do in the no code builder or should i use JS to do this? Also did I select the correct path etc.?