Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

UpsertRowsResult

import type { UpsertRowsResult } from "https://aws-api.deno.dev/v0.4/services/honeycode.ts?docs=full";

An object that represents the result of a single upsert row request.

interface UpsertRowsResult {
rowIds: string[];
upsertAction: UpsertAction;
}

§Properties

§
rowIds: string[]
[src]

The list of row ids that were changed as part of an upsert row operation. If the upsert resulted in an update, this list could potentially contain multiple rows that matched the filter and hence got updated. If the upsert resulted in an append, this list would only have the single row that was appended.

§
upsertAction: UpsertAction
[src]

The result of the upsert action.