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

QueryPlan

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

Contains an ordered list of nodes appearing in the query plan.

interface QueryPlan {
planNodes?: PlanNode[];
queryAdvice?: QueryAdvisorResult;
}

§Properties

§
planNodes?: PlanNode[]
[src]

The nodes in the query plan. Plan nodes are returned in pre-order starting with the plan root. Each PlanNode's id corresponds to its index in plan_nodes.

§

Optional. The advices/recommendations for a query. Currently this field will be serving index recommendations for a query.