Files
n8n-docs/docs/code/cookbook/code-node/number-items-last-node.md
2025-09-10 10:16:20 +01:00

67 lines
726 B
Markdown

---
contentType: howto
---
# Get number of items returned by the previous node
To get the number of items returned by the previous node:
=== "JavaScript"
```js
if (Object.keys(items[0].json).length === 0) {
return [
{
json: {
results: 0,
}
}
]
}
return [
{
json: {
results: items.length,
}
}
];
```
The output will be similar to the following.
```json
[
{
"results": 8
}
]
```
=== "Python"
```python
if len(items[0].json) == 0:
return [
{
"json": {
"results": 0,
}
}
]
else:
return [
{
"json": {
"results": items.length,
}
}
]
```
The output will be similar to the following.
```json
[
{
"results": 8
}
]
```