Why are my records being duplicated in my workflow,been happening for a while and I don’t know why
@Apeti_Alexander usually that means youre pulling the same source records on every run and writing them again, since nothing tells n8n which it already handled. the clean fix is to make your destination write an upsert keyed on a unique field (id or email) so a re-run updates the existing row instead of inserting a new one. are the same records reappearing each run, or is each one doubled within a single execution?