How do you combine outputs from multiple operations into a single text output?

I am trying to get the following outputs from these operations into a single compose a string module. I feel like I’m missing something really simple.


I think I figured it out. I had to go all the way back to my original module that started the whole process. That module only returned one result.

2 Likes

You could use a Text Aggregator.

Every result (item/record) from a search/match module will output a bundle. To “combine” them into a single structure, you’ll need to use an aggregator of some sort.

Aggregators are modules that accumulate multiple bundles into one single bundle. An example of a commonly-used aggregator module is the Array aggregator module.

3 Likes