prorm API Reference
    Preparing search index...

    Interface RetrieveOptions

    Args for retrieve().

    interface RetrieveOptions {
        consistency?: number | "all" | "majority" | "quorum";
        timeout?: number;
        withPayload?: boolean | string[] | {} | {};
        withVector?: boolean | string[];
    }

    Hierarchy (View Summary)

    Index
    consistency?: number | "all" | "majority" | "quorum"

    Read-consistency requirement.

    timeout?: number

    Per-request timeout override, in seconds.

    withPayload?: boolean | string[] | {} | {}

    Which payload fields to attach. Default: true (all).

    withVector?: boolean | string[]

    Which vector(s) to attach. Default: false.