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

RunAggregationQueryRequest

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

The request for Datastore.RunAggregationQuery.

interface RunAggregationQueryRequest {
aggregationQuery?: AggregationQuery;
databaseId?: string;
explainOptions?: ExplainOptions;
gqlQuery?: GqlQuery;
partitionId?: PartitionId;
readOptions?: ReadOptions;
}

§Properties

§
aggregationQuery?: AggregationQuery
[src]

The query to run.

§
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 an 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.

§
readOptions?: ReadOptions
[src]

The options for this query.