Hi, I’m using n8n with a polling trigger set to 1 minute, based on changes in an Airtable with a specific base, table, and “last_modified” column. If I turn off n8n and there are changes in Airtable during that time, will n8n automatically sync those changes when it restarts, or will it only detect changes after the “last_modified” column updates again?
n8n version: 1.54.3
Database (default: SQLite): PosgresDB
n8n EXECUTIONS_PROCESS setting (default: own, main): own
Running n8n via (Docker, npm, n8n cloud, desktop app): Docker-compose
It depends on your workflow. If the condition to act is, that it checks if “lastmodified” isn’t older than “now - 1 minute”, then it will only act on those.
if you want to make sure it gets all changed items, you might want to add another field, which is “lastsynced” in which you write the time (“now”) when the item ran through your workflow.
then you only have to check
“lastmodified” isn’t older than “now - 1 minute” AND lastmodified > lastsynced