@valon-technologies/gestalt
    Preparing search index...

    Interface OpenCursorRequest

    OpenCursorRequest starts a streaming cursor over an object store or index.

    interface OpenCursorRequest {
        store: string;
        range?: KeyRange;
        direction: number;
        keysOnly: boolean;
        index: string;
        values: TypedValue[];
    }
    Index

    Properties

    store: string
    range?: KeyRange
    direction: number
    keysOnly: boolean

    keys_only suppresses row payloads and returns only keys.

    index: string

    index selects a secondary index when non-empty.

    values: TypedValue[]

    values selects a compound index key prefix when index is set.