couchbase
    Preparing search index...

    Interface ViewQueryKeyRange

    Specifies the key range for a view query.

    interface ViewQueryKeyRange {
        end?: string | string[];
        inclusive_end?: boolean;
        inclusiveEnd?: boolean;
        start?: string | string[];
    }
    Index

    Properties

    end?: string | string[]

    Specifies the last key that should be included in the results.

    inclusive_end?: boolean

    Same as ViewQueryKeyRange.inclusiveEnd, but represented as the raw server-side value instead.

    Use ViewQueryKeyRange.inclusiveEnd instead.

    inclusiveEnd?: boolean

    Specifies whether the end key should be considered inclusive or exclusive.

    start?: string | string[]

    Specifies the first key that should be included in the results.