Skip to main content
Question

Loop through multiple items

  • 17 June 2024
  • 1 reply
  • 30 views

Hello!
I’m aware there have been many similar posts before and perhaps there’s an answer to my question under 1 of them, but I wasn’t lucky enough to find it yet.
So I’m using JavaScript code to handle multiple items and then Use the Looping by Zapier step to iterate through each of them if necessary (if there are more than 1- want to make sure my Zapier setup dynamically updates the items based on the input data).
The problem is that dynamically I’m always getting only the first item.

That’s the output of my JS code:
{
  "impacts": /
    {
      "id": "448...d92"
    },
    {
      "id": "830...7a8"
    }
  ]
}
 

And this is what I’m getting from my Loop:
{
  "loop_iteration": 1,
  "impact": "448...d92",
  "preview_loop_values": d
    {
      "loop_iteration": 1,
      "impact": "448...d92"
    },
    {
      "loop_iteration": 2,
      "impact": "830...7a8"
    }
  ]
}
 

And at the end this is the final result. What do I need to do, to receive all items?

 

This post has been closed for comments. Please create a new post if you need help or have a question about this topic.

1 reply

It looks like the issue is due to how the test step in Zapier's Looping action works. When you test a loop action, Zapier only processes the first loop iteration during the test.