Interface QueryPlanExecution<T>

interface QueryPlanExecution<T> {
    fingerprint: `sha256:${string}`;
    planId: string;
    result: Result<T>;
}

Type Parameters

  • T = Record<string, unknown>

Properties

fingerprint: `sha256:${string}`
planId: string
result: Result<T>