Skip to main content
Write data from a workflow output table to your app’s database:

Configuration

Write modes

upsert

Insert new rows, update existing ones based on upsertKey:
The upsertKey must match a unique constraint on the target table.

replaceAll

Atomically delete matching rows, then insert all source rows:
replaceWhere scopes the DELETE to rows matching values from the source data.

append

Insert all rows without checking for duplicates:

Validation