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

ExplainOptions

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

Explain options for the query.

interface ExplainOptions {
analyze?: boolean;
}

§Properties

§
analyze?: boolean
[src]

Optional. Whether to execute this query. When false (the default), the query will be planned, returning only metrics from the planning stages. When true, the query will be planned and executed, returning the full query results along with both planning and execution stage metrics.