Description
Concatenates any number of lists of a single type into a single list of that type
Available In
- Apps
- Automations
Syntax
ARRAY_CONCAT(lists: List<List<T>>)
Example
ARRAY_CONCAT([1,2],[3,4],[5,6]) = [1,2,3,4,5,6]

Concatenates any number of lists of a single type into a single list of that type
ARRAY_CONCAT(lists: List<List<T>>)
ARRAY_CONCAT([1,2],[3,4],[5,6]) = [1,2,3,4,5,6]