What is the standard way of passing through data from previous nodes?

Currently, I don’t know how to do this beside using merge node to merge the latest node with the previous node that I want to forward the data in. The issue with this approach is readability. As you can see, It’s very hard to visualize, especially when I have a lot of nodes.

you can get data from a node that is not the immediate predecessor using this syntax: {{ $('NodeName').item.json }}

1 Like

This is great. It should be part of the Node options