Using merge in loop over items

I am facing an issue when i am using merge in loop over items.
As you can see in the image below, node ‘loop over items2’, the merge node after that has 2 inputs, one from loop and another from an external source.
The issue is that the external source(node name ‘merge’) data is only available for the first run of the loop and it doesn’t show up in the second iteration onwards. Kindly help with a solution to this or a work around.

It looks like your topic is missing some important information. Could you provide the following if applicable.

  • n8n version:
  • Database (default: SQLite):
  • n8n EXECUTIONS_PROCESS setting (default: own, main):
  • Running n8n via (Docker, npm, n8n cloud, desktop app):
  • Operating system:

@Manish_Kumar , you shouldn’t be using Merge in the loop the way you do. Try to merge either before or after the Loop (whichever is applicable to your use case). Something like is shown below

Hi, I’m also having a problem using merge in loop over items.
In my case, I’m using merge because I need some information from the Webhook and also to control the flow so the “Push to DefectDojo” node doesn’t execute before the “IP report” node.
The problem is that on the second iteration of the loop, the flow stops on the Merge node.
Is there a solution/workaround for this?