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

RunQueryRequest

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

The request for Datastore.RunQuery.

interface RunQueryRequest {
databaseId?: string;
explainOptions?: ExplainOptions;
gqlQuery?: GqlQuery;
partitionId?: PartitionId;
propertyMask?: PropertyMask;
query?: Query;
readOptions?: ReadOptions;
}

§Properties

§
databaseId?: string
[src]

The ID of the database against which to make the request. '(default)' is not allowed; please use empty string '' to refer the default database.

§
explainOptions?: ExplainOptions
[src]

Optional. Explain options for the query. If set, additional query statistics will be returned. If not, only query results will be returned.

§
gqlQuery?: GqlQuery
[src]

The GQL query to run. This query must be a non-aggregation query.

§
partitionId?: PartitionId
[src]

Entities are partitioned into subsets, identified by a partition ID. Queries are scoped to a single partition. This partition ID is normalized with the standard default context partition ID.

§
propertyMask?: PropertyMask
[src]

The properties to return. This field must not be set for a projection query. See LookupRequest.property_mask.

§
query?: Query
[src]

The query to run.

§
readOptions?: ReadOptions
[src]

The options for this query.