Skip to main content
Module

x/google_datastore/types.d.ts>AggregationResultBatch

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

Properties

readTime: string

Read timestamp this batch was returned from. In a single transaction, subsequent query result batches for the same query can have a greater timestamp. Each batch's read timestamp is valid for all preceding batches.

moreResults: MoreResults

The state of the query after the current batch. Only COUNT(*) aggregations are supported in the initial launch. Therefore, expected result type is limited to NO_MORE_RESULTS.

aggregationResults: AggregationResult[]

The aggregation results for this batch.