Hello, I just started trying n8n and loving it so far.
At the moment I’m trying to create a workflow that “synchronizes” events between two Google Calendars, so the flow would be
- Get all events from first calendar
- Check if each event exists on the second calendar
- If it doesn’t exist, create it
In particular, the second step is giving me some issues, because if Google Calendar doesn’t find an event by ID it throws an error
I’m wondering if there’s any way to enclose this error in a sort of try/catch, because when the check fails, that’s when I should go on with my workflow.
I checked out the Error Trigger, but it seemed counterintuitive to me to create a new workflow that would handle the event creation.
I also checked the Continue on Fail settings on the node, but even if the node fails, there’s no trace of the error on the following node (I know the previous input is passed over, but it would be good to know if there was any error in the meantime).
Do you have any advice on how to handle this case?
Thanks!