Hello everyone,
I’m trying to find a more effective way to achieve my scenario which in my opinion is consuming too many operations.
The scenario
I’m fetching some items from Google Sheet (resulting in multiple bundles) and I’m trying to create a phoneNumbers variable at the end (Tools [21] module). The phoneNumbers variable is just a simple array of phone numbers
The problem
The phone numbers returned in the Google Sheet module do not have a “+” prefix. I’m trying to add the “+” in the resulting phoneNumbers variable (Tools [21] module).
While my scenario is handling this change successfully, the Tools [20] module increase significantly the number of operations, because it has to create a new variable for each bundle resulting from the Google Sheet search.
I want to know how the same result could be achieve with less operations
In my Array aggregator module, I’m simply aggregating the phoneNumber field created in the step before (Tools [20] module)
Is there a way to handle this data manipulation (appending the “+” to phone numbers) outside of the Tools [20] module so I can save on operations?