Interface ExplainGeoParquetQueryOptions<T>Experimental

Opt-in GeoParquet v2 planning options.

interface ExplainGeoParquetQueryOptions<T> {
    authorizationScope?: readonly string[];
    capabilityPolicy?: CapabilityPolicy;
    descriptor: SourceDescriptor;
    estimates?: QueryPlanningEstimates;
    fallback?: QueryFallbackPolicy;
    geoparquetResource: GeoParquetResourceHandleV1;
    query?: Readonly<Query<T>>;
    schemaVersion?: string;
    sourceVersion?: string;
}

Type Parameters

  • T = Record<string, unknown>

Hierarchy (view full)

Properties

authorizationScope?: readonly string[]

Stable scope identifiers only. Never pass credentials or tokens.

capabilityPolicy?: CapabilityPolicy
descriptor: SourceDescriptor

Caller-supplied metadata estimates; explaining never reads result data.

geoparquetResource: GeoParquetResourceHandleV1

Opaque stable identity; the locator remains private to the injected resolver.

query?: Readonly<Query<T>>
schemaVersion?: string
sourceVersion?: string