Interface ViewQueryIdRange

Specifies the id range for a view query.

interface ViewQueryIdRange {
    end?: string;
    start?: string;
}

Properties

Properties

end?: string

Specifies the last id (inclusively) that should be included in the results.

start?: string

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