Skip to main content
Module

x/google_datastore/mod.ts>CommitOptions

A set of APIs that allow interfacing to Google Datastore on GCP from Deno.
Go to Latest
interface CommitOptions
import { type CommitOptions } from "https://deno.land/x/google_datastore@0.0.14/mod.ts";

Options that can be used when committing mutations to the datastore.

Properties

optional
batchSize: number

The number of mutations that will be set per batch. Defaults to 500, must be between 1 and 500.

optional
transactional: boolean

Indicates if the commit is transactional or not. Defaults to true.

optional
transaction: string

The associated transaction to use when committing.