Sanity Library Reference Docs
    Preparing search index...

    A compiled lake read — what the engine's query builders return and what a reactive adapter's live-query store subscribes with, so the stateless and reactive paths run the same GROQ.

    interface CompiledQuery {
        params: Record<string, string | string[]>;
        query: string;
    }
    Index

    Properties

    Properties

    params: Record<string, string | string[]>
    query: string