Interface WidgetCategoriesRequest<T>

interface WidgetCategoriesRequest<T> {
    analyticsSource?: AnalyticsSourceDescriptor;
    cache?: WidgetSourceCacheHints;
    field: string;
    limit?: number;
    maxClientRows?: number;
    metric?: AggregationMetric;
    orderBy?: WidgetSourceOrderBy;
    projection?: WidgetSourceProjection;
    query?: Query<T>;
    signal?: AbortSignal;
}

Type Parameters

  • T = Record<string, unknown>

Hierarchy (view full)

Properties

analyticsSource?: AnalyticsSourceDescriptor

Request-level warehouse/indexed descriptor override for cache identity.

field: string
limit?: number
maxClientRows?: number

Structural match for selectLinkedViewQueryProjection(...).

query?: Query<T>
signal?: AbortSignal