prorm API Reference
    Preparing search index...

    Interface MilvusQueryOptions

    Options for query().

    interface MilvusQueryOptions {
        filter?: string;
        ids?: (string | number)[];
        outputFields?: string[];
        partitionNames?: string[];
        limit?: number;
        offset?: number;
    }
    Index
    filter?: string

    Scalar filter expression. Omit (with ids) to fetch by primary key instead.

    ids?: (string | number)[]
    outputFields?: string[]
    partitionNames?: string[]
    limit?: number
    offset?: number