Interface FilterRegistryQueryProjection

interface FilterRegistryQueryProjection {
    cacheable: boolean;
    cacheKey: string;
    degraded?: readonly DegradedReason[];
    linkedView: LinkedViewQueryProjection;
    projection: WidgetSourceProjection;
    query: Query<Record<string, unknown>>;
    runtimeFilter?: RuntimeStyleFilterExpression;
    where?: string;
}

Properties

cacheable: boolean
cacheKey: string
degraded?: readonly DegradedReason[]
query: Query<Record<string, unknown>>
where?: string