DomainBatchOptions
Defined in: js-api/src/domains.ts:448
Options for domain table batch.
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
allOrNothing? | boolean | Abort the whole batch on any row error (default true); false applies good rows and reports bad ones per row. | js-api/src/domains.ts:453 |
errorOnDuplicate? | boolean | Report business-key duplicates as errors instead of skipping them. | js-api/src/domains.ts:455 |
format? | "json" | "csv" | "d42" | "parquet" | Payload format for Uint8Array data: 'd42' (default; DataFrame.toByteArray() output) or 'parquet' (converted client-side via the Arrow package — fails with a clear error when Arrow is not installed). Ignored for other payloads — the format is inferred: DataFrame → sent as d42, string → 'csv', object[] → 'json'. | js-api/src/domains.ts:460 |
mode? | "insert" | "upsert" | 'insert' (default) or 'upsert' (merge by the table's business key). | js-api/src/domains.ts:450 |