I have a quick question that I could not find in the forum.
Adding a node that triggers another workflow seems to pass data to the sub-workflow but in my case only the preceding node and not the previous ones… is this a correct interpretation or am I missing something?
N8n version: 1.47.1
Self.hosted on ubuntu running with Docker container.
only what is in the active json gets passed to the other workflow. In the example below:
only the data from the “Second fields” node would be passed to the other workflow
you can check what is in the JSON by using an expression in an edit field node right before the Execute workflow node, as you can see below, it only shows the 2nd edit field node
To overcome that you can just use the merge node with combine
and you can see from the image below it now has the json from both nodes
Hope that answers your question. Let me know if that makes sense