@oxia-db/client - v0.1.0
    Preparing search index...

    Interface GetResult

    Result of OxiaClient.get.

    interface GetResult {
        key: string;
        value: Uint8Array<ArrayBufferLike> | undefined;
        version: Version;
    }
    Index

    Properties

    Properties

    key: string

    The matched record's primary key. For non-EQUAL comparisons and secondary-index lookups, this is the key that actually matched — not the probe/query value that was passed in.

    value: Uint8Array<ArrayBufferLike> | undefined

    The stored value, or undefined if the caller passed includeValue: false.

    version: Version

    Version metadata for the record.