Is there anyway that to merge mutiple data?

Describe the problem/error/question:

Dear all.
I am trying to merge multiple data in one but once I execute after node the previous data disapear.
how can I execute the node at the same time or how can I merge all the data togather?
Thank you!

What is the error message (if any)?

Please share your workflow

(Select the nodes on your canvas and use the keyboard shortcuts CMD+C/CTRL+C and CMD+V/CTRL+V to copy and paste the workflow.)

Share the output returned by the last node

Information on your n8n setup

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

When manual executing the merge node, it will only execute the branches that are connected with that node. As for your workflow, if you execute the “Merge1” node, it will execute only the branches connected to it (the two above) and all of the nodes before them, but if you execute “Merge3” it will execute all of them, as every branch are connected to it.

But if this workflow is executing with a trigger it will execute all branches and merge all data at the end.

1 Like

Thank you! I fixed it.