Interface ViewQueryKeyRange

Specifies the key range for a view query.

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

Properties

end?: string | string[]

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

inclusiveEnd?: boolean

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

inclusive_end?: boolean

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

Deprecated

Use ViewQueryKeyRange.inclusiveEnd instead.

start?: string | string[]

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