ARRAY_CONCAT()

Prev Next
This content is currently unavailable in Русский. You are viewing the default (English) version.

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]