
Parameters
Expand Condition
| Parameter | Description |
|---|---|
| Length Expression | Specifies the number of iterations for each record. This can be an integer or an expression. |
| Finished Expression | Specifies the number of iterations for each record. Example SQL: explode(array(0, 1, 2)) AS idx |
| Finished Condition | Excludes records from the output table. Example SQL: idx > size(order_items) - 1 |
Index Alias
| Parameter | Description |
|---|---|
| Alias | Defines the name of the index. You can use this alias inside your gem expressions. This will also be the name of the additional output column that shows the index at which a record is generated. |
0 and incremented per iteration.
Output Columns
| Parameter | Description |
|---|---|
| Columns | Lists the columns that will appear in the output table. Example SQL: element_at(order_items, (idx + 1))['item_name'] AS item |


