I’m building a micro-service app to help people manage their contacts on Hubspot.
My workflow is quite resource-consuming, so I have to split it into three parts; otherwise, my server crashes every time I launch my workflow.
This is about the first part, where I collect all the information in a Webflow form (trigger). Then, I query the Hubspot API for contacts and put the information into a spreadsheet.
My problem is in the last node. It’s impossible to trigger the next workflow. My “Execute Workflow” node sends an error: “Webflow Trigger” node doesn’t exist.
Do you guys know what’s happening there?
Thanks for your help, and have a great day!
n8n version: 1.24.1
Database (default: SQLite): SQLite
n8n EXECUTIONS_PROCESS setting (default: own, main): own, main
This sounds like an expression in your sub-workflow is trying to read data from a “Webflow Trigger” node. This will, however, not work as the trigger node running in your sub-workflow will be the Execute Workflow Trigger node instead.
Or in other words, you’d need to ensure the expressions in your sub-workflow only reference data from nodes being used in the sub-workflow.