Using GCP / Google Workflows I'd like to take an array and apply a transformation to each one calling http endpoints. To do this, I'm looking for a way to apply the transformation and then re-assemble the results into another array. One way to do this is experimental.executions.map, but it's an experimental feature that's subject to change, so I'm a little hesitant to use that. Another way to do this is to start with an empty array and append to that array as the transformation is applied. Is there a way to do this? Concatenating a string seems to work, but there doesn't seem to be a built-in away to append to an array. I tried something like this, which does execute successfully, but doesn't yield the expected result:
main:
steps:
- assignVariables:
assign:
- sourceArray: ["one", "two", "three"]
- hashedArray: []
- hashedString: ""
- i: 0
- checkCondition:
switch:
- condition: ${i < len(sourceArray)}
next: iterate
next: returnResult
- iterate:
assign:
- hashedArray[i]: ${"#" + sourceArray[i]}
- hashedString: ${hashedString + "#" + sourceArray[i] + " "}
- i: ${i + 1}
next: checkCondition
- returnResult:
return:
- hashedString: ${hashedString}
- hashedArray: ${hashedArray}
Actual result:
[
{
"hashedString": "#one #two #three "
},
{
"hashedArray": []
}
]
Expected result:
[
{
"hashedString": "#one #two #three "
},
{
"hashedArray": ["#one", "#two", "#three"]
}
]
Appending items to lists is now supported using list.concat: