Skip to main content
Module

x/google_datastore/types.d.ts>ReadOptions

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

The options shared by read requests.

Properties

optional
readConsistency: "STRONG" | "EVENTUAL"

The non-transactional read consistency to use. Cannot be set to STRONG for global queries.

optional
transaction: string

The identifier of the transaction in which to read. A transaction identifier is returned by a call to Datastore.BeginTransaction.