Hello!
I have been trying to loop through an Array in Bridge, and can't seem to figure it out. From what I can find online, I need to use a child workflow and send the Array there while also setting the child workflow's "number of runs" equal to the length of the Array.
This is partially working. The Array is being sent over to the child workflow, and on every run it is sent with an index value as well. (see below)
From here, the only issue I'm running into is how to use the index value I'm being given to access the data in the Array.
Each object in my Array contains a sheetId, a rowId, and a columnId. So, on each run of the child workflow I need to be able to access those values using the index provided.
I have tried a few variations including: {{runtime.entities.data.{{runtime.index}}.columnId}} , {{runtime.entities.data.runtime.index.columnId}}, and {{runtime.entities.data.index.columnId}}, etc.
Nothing that I have tried so far seems to be working. I have a coding background and am used to being able to loop through Arrays quite easily. Is there some other way I should be going about this that I'm missing? If anyone has an idea, please let me know.
Thank you in advanced for any help!