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

RunAggregationQueryResponse

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

The response for Datastore.RunAggregationQuery.

interface RunAggregationQueryResponse {
explainMetrics?: ExplainMetrics;
transaction?: Uint8Array;
}

§Properties

§

A batch of aggregation results. Always present.

§
explainMetrics?: ExplainMetrics
[src]

Query explain metrics. This is only present when the RunAggregationQueryRequest.explain_options is provided, and it is sent only once with the last response in the stream.

§

The parsed form of the GqlQuery from the request, if it was set.

§
transaction?: Uint8Array
[src]

The identifier of the transaction that was started as part of this RunAggregationQuery request. Set only when ReadOptions.new_transaction was set in RunAggregationQueryRequest.read_options.