I have multiple scenario that need the same group of data
So far I am loading all of these data in each scenario but I would like to optimise it by doing the following:
Scenario parent: Collect all the relevant data - Aggregate them into a JSon - Pass the Json to the appropriate scenario
Scenario child: Received the json, execute the action
The image below represent all the modules I need to collect the data from (6 modules total)
I think the best approach would be to convert the output (operation) from each module into a collection and then aggregate them into a JSON
It is the right approach?
How can I convert the output of an operation into a collection and aggregate them all at the end into a specific JSON format?
Blueprint attached:
blueprint (2).json (50.1 KB)