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

Delete

import type { Delete } from "https://googleapis.deno.dev/v1/spanner:v1.ts";

Arguments to delete operations.

interface Delete {
keySet?: KeySet;
table?: string;
}

§Properties

§
keySet?: KeySet
[src]

Required. The primary keys of the rows within table to delete. The primary keys must be specified in the order in which they appear in the PRIMARY KEY() clause of the table's equivalent DDL statement (the DDL statement used to create the table). Delete is idempotent. The transaction will succeed even if some or all rows do not exist.

§
table?: string
[src]

Required. The table whose rows will be deleted.