Hi Makers!
My goal is to set a variable as a string of comma separated “id” items from the following scenario, having also troubles in stopping the iterator to set multiples outputs:
Hey @GBOL , there are a few things you should change to get this working
The aggregator should be aggregating data which comes out of the iterator, because this is the initial “source” of all these items. Because of this, make sure you set the Source Module setting within your aggregator to be the Iterator.
This would then properly put all items into an array, instead of multiple bundles .
Once that is done, you will have an array of all IDs inside of a collection. To get a “flattened” array with all IDs you have to use the map() function. It would look something like: map({{14.array}};id)
If you then finally want to combine all these IDs into a string seperated by a comma, you can use the join() function.
Hope this helps you get further!
Let us know if you need any additional assistance.