MAP_WITH_INDEX
Last updated: 9/15/2026Outputs an index and a value field. Index contains a zero based index, and value contains the value in the input field.
Syntax
MAP_WITH_INDEX(value)
Arguments
| Name | Type | Description | Default Value |
|---|---|---|---|
| value | any | The value to convert to a record |
Examples
| value | Output |
|---|---|
| array['a', 'b', 'c'] | [{index: 0, value: `a`}, {index: 1, value: `b`}, {index: 2, value: `c`}] |