mirror of
https://github.com/n8n-io/n8n-docs.git
synced 2026-03-27 17:38:40 +07:00
7 lines
183 B
Markdown
7 lines
183 B
Markdown
```js
|
|
// Input
|
|
{{ [{"type":"fruit", "name":"apple"},{"type":"vegetable", "name":"carrot"} ].smartJoin("type","name") }}
|
|
// Output
|
|
[Object: {"fruit":"apple","vegetable":"carrot"}]
|
|
```
|