Interface OfflineRegionCanonicalQueryV1

The pagination-free canonical form of a Query.

Every constraint that changes which records match is part of this value and therefore part of resource identity. Pagination is deliberately excluded: it selects a window over an already-determined match set, and the read path answers it from the stored batch's own recorded window instead of pretending a different page was captured.

interface OfflineRegionCanonicalQueryV1 {
    filter: unknown;
    orderBy: null | readonly {
        direction: "asc" | "desc";
        field: string;
    }[];
    outFields: null | readonly string[];
    outSr: null | string | number;
    returnGeometry: null | boolean;
    spatialFilter: unknown;
    temporalFilter: unknown;
    where: null | string;
}

Properties

filter: unknown
orderBy: null | readonly {
    direction: "asc" | "desc";
    field: string;
}[]
outFields: null | readonly string[]
outSr: null | string | number
returnGeometry: null | boolean
spatialFilter: unknown
temporalFilter: unknown
where: null | string