Loop doesn't give output

Describe the problem/error/question

My loop node doesn’t give any output although it does get input. It stops the whole workflow.

What is the error message (if any)?

The error message is that the edit field node can’t execute because it’s missing input from the loop

Please share your workflow

Share the output returned by the last node

Information on your n8n setup

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

I believe this is because you have to complete the loop with the loop node. It wont ever proc the done branch because it could not complete the loop.

I am unsure if done branch to same route is accurate, but you have to at least connect the end http request back to the beginning of the Loop Over Items node. Like this:

Thanks for your feedback. I’ve tested your solution, but it still has the same error. Here’s the adjusted workflow, it still has the same issues.

What errors are you seeing exactly, maybe I don’t follow? Could you provide any screenshots?

The Loop node receives input, but he doesn’t create output for the edit field node to execute. I’ve uploaded screenshots of the Split out, the Loop node & the test workflow to show that the workflow stops at Loop Over. I hope that helps.



Oh. Loop Over Items node batch size should just be set to 1, not {{ $json.selections }} .

1 Like

that was simple! Thanks, that solved the issue, appreciate the support!

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.