Interface WidgetSourceRequestBase<T>

interface WidgetSourceRequestBase<T> {
    analyticsSource?: AnalyticsSourceDescriptor;
    cache?: WidgetSourceCacheHints;
    maxClientRows?: number;
    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.

maxClientRows?: number

Structural match for selectLinkedViewQueryProjection(...).

query?: Query<T>
signal?: AbortSignal