Interface GeoparquetResolvedQueryInput<T>Experimental

interface GeoparquetResolvedQueryInput<T> {
    geometry?: GeometryColumnPlan;
    operation: "query" | "queryAggregate" | "queryAll";
    query: Query<T>;
    sourceId: string;
    sources: readonly string[];
}

Type Parameters

  • T = Record<string, unknown>

Properties

operation: "query" | "queryAggregate" | "queryAll"
query: Query<T>
sourceId: string

Validated logical id from the opaque handle, used only for degradation diagnostics.

sources: readonly string[]