"Execute Workflow Trigger" Node - returned data

I hope this is not a duplicate (I’ve not found anything in Feature requests, nor here in Questions)

Is there another way to set the output of a subworkflow than the positon of the nodes on the canvas?
Usually its not a problem when developing a workflow, but when updating a subworkflow its really easy to mess up when you change just a little thing.
Perfect solution would be something like the “Respond to http request” node, just for the “Execute Workflow Trigger” node.

Example:
this Subworkflow should output the result (count) of the aggregation node, but when the nodes are not on their correct position it returns the false result.

This does not work:

Information on your n8n setup

  • **n8n version:**1.37.3
  • **Database (default: SQLite):**postgres
  • **n8n EXECUTIONS_PROCESS setting (default: own, main):**queue
  • **Running n8n via (Docker, npm, n8n cloud, desktop app):**docker
  • **Operating system:**Ubuntu

hello @FelixL

That’s because of this
image

As n8n doesn’t execute nodes asynchronously, they will be executed in an order. That order depends on the workflow settings (execution order). To avoid such an issue, you should use the merge node to connect the http node and pipedrive node as inputs. Set the operation to return only input with pipedrive.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.