Split items

Hi

I would like to know if it is possible to split items that look like on the screenshot and repeat the nodes after once per item?

Kind regards
Mattias

Yes, this Function-Node should do the trick:

2 Likes

Thanks, i will try, highly appriciated

You are welcome. Have fun!

Thank you working very well just needed to restart the browser!

Awsome software

@jan how can I do the same but for items inside the ‘body’?
image

in the Funtion node you can try this code:

return Object.entries(items[0].json.body).map(([key, value]) => {
  return {
    json: value
  }
})
4 Likes