["mr man", "mrman@contoso.com"],
]
}
I did a list rows to get my data, then a select on it and a parse json. which gets me a really nice json that has every row that I need.
When I loop through that parse json output and try to append an array (row) to my array it doesn't let me.
BadRequest. The input value is of type 'Array' which cannot be appended to the variable 'tableData' of type 'Array'. The action type 'AppendToArrayVariable' only supports values of types 'Float, Integer, String, Boolean, Object'.
Is there a way that I can do this?
but I can initialize an array with something like this
[
[
"Apple",
"Banana",
"Cherry"
],
[
"Dog",
"Cat",
"Bird"
],
[
"Red",
"Blue",
"Green"
]
]
All I want to do is extend this ^