Describe the problem/error/question
Hello,
I have a workflow that I created on June 2023 and that was working fine until then, but that stopped working after a recent update. Well, there are three workflows affected by the same problem, but I’ll take this one as an example.
In this workflow, I retrieve emails and loop over them to apply the filters I have in my database. In order to avoid retrieving the filters from the database on each loop, I had made a branch parallel to the loop which retrieved them only once, and I managed to retrieve these nodes running in parallel in the loop, like this:
Except that since a recent update, it no longer works:
With this error:
Error finding the referenced node [line 3]
ExpressionError
Line 3 being:
const filters = $(‘Filters’).all()[0].json;
The last time it worked was on June 5. Since then, all my automations that have the same type of operation have broken down.
If I put the nodes in the loop, it works, but they are called as many times as there are loops, and in some of my workflows this can be as many as 200 times…
Please share your workflow
Share the output returned by the last node
Information on your n8n setup
- n8n version: 1.106.3
- Database (default: SQLite): Postgres
- n8n EXECUTIONS_PROCESS setting (default: own, main):
- Running n8n via (Docker, npm, n8n cloud, desktop app): Docker
- Operating system: Unraid

