Fold an Array
Description
This activity folds the array in the selected column. Each element of the array will occupy a separate row in the output.
Input
Data only
Output
Transformed data
Configuration Fields
Column Name The name of the column containing the array to be processed.selected from previous activity
Sample Input
ID | Array values |
---|---|
1 | [“A”, “B”, “C”] |
2 | [“X”, “Y”] |
Sample Configuration
Sample Output
ID | Array values |
---|---|
1 | A |
1 | B |
1 | C |
2 | X |
2 | Y |