Empty Output Flow

my node executes successfully but returns no items, causing downstream nodes to process nothing, what can I do

Describe the problem/error/question

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:
  • Database (default: SQLite):
  • n8n EXECUTIONS_PROCESS setting (default: own, main):
  • Running n8n via (Docker, npm, n8n cloud, desktop app):
  • Operating system:
1 Like

**This isn’t a failure **
it’s a silent logic break.

Add validation before passing data forward. Use an IF node to check item count ({{$items().length}} > 0) and branch accordingly.

Also inspect upstream nodes to confirm data is actually being emitted, not filtered out unintentionally.

2 Likes

One thing — make sure youre checking WHERE the empty output comes from, not just that its empty. is it the source node returning nothing, or a filter removing items? use the debug output at each step. also “always output data” on filter nodes has fixed it for us

1 Like

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