You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rollups are expensive, and some callers do not need them. Let callers skip rollups, compute only visible rollups, or use cached values once a cache exists.
Scope
Add ?rollups=none|visible|cached to /cortext/v1/rows.
Goal
Rollups are expensive, and some callers do not need them. Let callers skip rollups, compute only visible rollups, or use cached values once a cache exists.
Scope
?rollups=none|visible|cachedto/cortext/v1/rows.none: skipcompute_rollup_value. Requested rollup fields returnnull.visibledefault: compute only rollups included in the response. This pairs withfields[].cached: use cached values when present and fall back to compute. Activates once the rollup cache lands (Explore materializing collection field values and rollup cache for scale #177).?rollups=none.Acceptance criteria
?rollups=noneskips rollup computation entirely, and rollup fields in the response returnnull.visiblecomputes only rollups included in the response.cachedfalls back to compute when no cache exists.