@wxn0brp/vql-client
    Preparing search index...

    Interface VQL_OP_Find<T>

    interface VQL_OP_Find<T = any> {
        collection: string;
        limit?: number;
        options?: DbFindOpts<T>;
        search?: SearchOptions<T> | SearchFunc<T>;
        searchOpts?: FindOpts<T>;
        select?: VQL_Fields;
    }

    Type Parameters

    • T = any
    Index
    collection: string
    limit?: number
    options?: DbFindOpts<T>
    search?: SearchOptions<T> | SearchFunc<T>
    searchOpts?: FindOpts<T>
    select?: VQL_Fields