n8nflow.net logo

Count the items returned by a node

by TomUpdated: Last update a year agoSource: n8n.io
Loading workflow viewer...

Getting Started

This workflow provides a simple approach to counting the items returned by a node.

It uses a Set node with the Execute Once option:

image.png

The expression uses $input.all() (documented here) to fetch all incoming items at once, and .length (documented for example here) to count them.