Loop through a JSON result set

Welcome to the community @Alykhan_Virani!

You can do that with a Function-Node and a slightly modified version of this.

Here the code:

return items[0].json.inte_data2.map(item => {
  return {
    json: {
      ...item,
      b: 'additional key'
    }
  }
});

And here an example workflow:

2 Likes