My worklfow has trigger from telegram message, when i try to branch the output to 2 node it can send the data but only continuing in node that on top and the node in the bellow will stop
Please share your workflow
Share the output returned by the last node
Information on your n8n setup
n8n version: 1.100.1
Database (default: SQLite): Sqlite
n8n EXECUTIONS_PROCESS setting (default: own, main): own
im trying to divide the data from one node into 2 node
more detailed workflow
after i execute the triger, only node ai agent run and the send message node not running
if i try to move the send message above the ai agent, the ai agent not running and only the send message that running
The way it works - n8n will execute your workflow node by node, branch by branch. In your case, the telegram node on the bottom will only be executed after the AI Agent is done fully. It will not parallel these processes. Do you need the bottom telegram node to execute after the AI Agent? Maybe you want to connect Telegram node to the output of the AI Agent or even as it’s tool.
As a side question, why do you need to split out from the trigger like that? Maybe there is a better way to handle this?
I originally wanted to run two nodes simultaneously, but it seems the n8n system can only run one node at a time.
So now I’m running the telegram node first and then the ai agent node, and it works, so that’s it.