type alias BigtableMutation
Since 0.2.0

One mutation in a CheckAndMutateRow branch or a batch entry.

The order within a list is preserved and the whole list applies atomically to its row (measured: [delete, insert] replaced a row wholesale, dropping a qualifier the insert did not name).

Definition

{ readonly method: "delete"; }
| { readonly method: "insert"; readonly data: Readonly<Record<string, Readonly<Record<string, string>>>>; }

Usage

import { type BigtableMutation } from "database-plugin/src/index.ts";