Shopify trigger error

Describe the problem/error/question

I am building a workflow that handles if a product is created or updated or deleted in shopify at first i did 3 separate workflows for each one then it gave me this conflict error then i realized that the product updated trigger can also work on if a product is created so i combines the the 2 in one workflow that see if the product id exists in supabase so it go to the update path but if not it go to the create path and it was solid but then i tried publishing that one and the delete product workflow at the same time it wont let me again but i need all 3 of them to be running and i cant find the right logic to combine 3 of them in one workflow because if i used the product id to check with their will be a conflict between the update and delete so i need help

What is the error message (if any)?

Please share your workflow


Share the output returned by the last node

Information on your n8n setup

  • n8n version: latest
  • Database (default: SQLite):
  • n8n EXECUTIONS_PROCESS setting (default: own, main):
  • Running n8n via (Docker, npm, n8n cloud, desktop app):
  • Operating system:

@amazingzizo that conflict is just because the trigger node was copy-pasted, so both workflows share the same webhook path and n8n needs each active trigger to have a unique one. delete the copied Shopify trigger and add a fresh one from scratch (dont paste it), it generates a new path and the conflict clears. and you dont actually need to merge all 3 into one workflow, create/update/delete are separate shopify topics so each just needs its own fresh trigger node. the topic itself tells you the event, so theres no need for the supabase id check to tell a create from an update.

Thanks, I didn’t pay attention to that.