List: extend with supplied data The “List: extend with supplied data” mapper extends an list/array with the provided list. If any keys are already present in the original list it will overwrite the list with those values.Documentation Index
Fetch the complete documentation index at: https://docs.alumio.com/llms.txt
Use this file to discover all available pages before exploring further.
Fields
Array
The list to extend the original list with.Sample data
| Input | Array | Output |
|---|---|---|
| {“name”: “Example”} | {“name”: “ABC”, “price”: 19.95} | {“name”: “ABC”, “price”: 19.95} |
| {“name”: “ABC”, “price”: 19.95} | {“name”: “ABC”, “price”: 10} | {“name”: “ABC”, “price”: 10} |