Interface RemoteQueryPlanStep

interface RemoteQueryPlanStep {
    compiled: RemoteCompiledQueryV1;
    engine: "remote";
    fidelity: "exact";
    id: string;
    operation: "query" | "queryAggregate" | "queryAll";
    pushdown: "partial" | "full";
    query: CanonicalQuery;
    reason: string;
    requests: number;
}

Properties

engine
fidelity
id: string
operation: "query" | "queryAggregate" | "queryAll"
pushdown: "partial" | "full"
reason: string
requests: number