Multiple Schedule Time Same Workflow Logic

Hello Team,

I’m looking for guidance on scheduling multiple job time to execute the same workflow. Should I add multiple schedule trigger nodes in the workflow?

All the job details are stored in MySQL, including:

job_type: recurring
job_interval: daily
job_week_day: NULL
job_month_day: NULL
job_date: NULL
job_time: 19:30

Any ideas on how I can implement this effectively?

Information on your n8n setup

  • n8n version: Version 0.225.2
  • Database (default: SQLite): -
  • n8n EXECUTIONS_PROCESS setting (default: own, main): own
  • Running n8n via (Docker, npm, n8n cloud, desktop app): : docker
  • Operating system: Ubuntu 22.04.2 LTS

hello @Asuwini_P

Yes, you can add multiple Schedule nodes to the workflow.

It depends on how are you receiving the job details from the SQL. The scheduling trigger can’t receive any variables as it should be the first node in the chain.

1 Like

Thank you for your response @barn4k

Understood your point. I will add multiple schedule trigger node in the workflow.