Concatenate arrays¶
Description¶
Concatenates two or more arrays and creates a new array that contains all the elements of the source arrays
Input/Output¶
Array : array <= Source
Output : array
Usage¶
- Connect a source to the operator
- Drag an array from the source tree and drop it into input field Array, then click on Add array
- Click on OK
You can repeat step 1-3 any time you want
Example¶
Array #1 = [{"key1":"value1", "key2":1}, {"key1":"value2", "key2":2}]
Array #2 = [{"key1":"value3", "key2":3}]
Output = [{"key1":"value1", "key2":1}, {"key1":"value2", "key2":2}, {"key1":"value3", "key2":3}]