Interface WidgetSourceProjection

interface WidgetSourceProjection {
    aggregation?: AggregationSpec;
    extent?: HonuaExtent;
    filters?: Readonly<Record<string, WidgetSourceFilterClause>>;
    grouping?: readonly string[];
    orderBy?: readonly SortSpec[];
    outFields?: readonly string[];
    pagination?: {
        limit?: number;
        offset?: number;
    };
    spatialFilter?: SpatialFilter;
}

Properties

aggregation?: AggregationSpec
extent?: HonuaExtent
filters?: Readonly<Record<string, WidgetSourceFilterClause>>
grouping?: readonly string[]
orderBy?: readonly SortSpec[]
outFields?: readonly string[]
pagination?: {
    limit?: number;
    offset?: number;
}
spatialFilter?: SpatialFilter