Fields
Glue
The separator character used to separate the values from the list.Sample data
| Input | Glue | Result |
|---|---|---|
| [“A”, “B”, “C”] | “, “ | “A, B, C” |
| {“name”: “A”, “price”: 19} | “ “ | “A 19” |
The List: implode to string mapper converts a list into a string.
| Input | Glue | Result |
|---|---|---|
| [“A”, “B”, “C”] | “, “ | “A, B, C” |
| {“name”: “A”, “price”: 19} | “ “ | “A 19” |