but the Execute Workflow node doesn’t output that, with or without the "do nothin"node
i’ve also tried the Postgres node to get the transcripts in the main workflow (you see it deactivated now) but it only brings the output from the database with only one link with transcript, even though the database already have the full transcripts
Information on your n8n setup
n8n version: 1.89.2
Database: Postgres
n8n EXECUTIONS_PROCESS setting (default: own, main): probably main, haven’t set this in .env
that node isn’t really important to the problem, because the issue is with the sub-workflow node. the point is that i wanted to bring the result of the subworkflow to the main one, which I thought was automatically fetched by the node without any workarounds.
regarding the subworkflow, I just had the same issue. Turns out, this is a bug in recent versions of n8n. See the issue on GitHub here:
The reason seems to be if there is some form of asynchronous waiting in the sub-workflow. In this case, the result is not properly returned to the main workflow. Hopefully they can fix it soon… You can try downgrading to older versions before.
Regarding the problem with Postgres in the main workflow: I think it returns multiple items. You can put an aggregate node after it, so that all items are combined to one list. Maybe this helps