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

MutationGroup

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

A group of mutations to be committed together. Related mutations should be placed in a group. For example, two mutations inserting rows with the same primary key prefix in both parent and child tables are related.

interface MutationGroup {
mutations?: Mutation[];
}

§Properties

§
mutations?: Mutation[]
[src]

Required. The mutations in this group.