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

RunQueryResponse

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

The response for Datastore.RunQuery.

interface RunQueryResponse {
explainMetrics?: ExplainMetrics;
query?: Query;
transaction?: Uint8Array;
}

§Properties

§

A batch of query results (always present).

§
explainMetrics?: ExplainMetrics
[src]

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

§
query?: Query
[src]

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 RunQuery request. Set only when ReadOptions.new_transaction was set in RunQueryRequest.read_options.