') + ')', 'gi'); if (regex.test(text)) { found = true; var frag = document.createDocumentFragment(); var parts = text.split(regex); parts.forEach(function(part, i) { if (i % 2 === 0) { frag.appendChild(document.createTextNode(part)); } else { var span = document.createElement('span'); span.className = 'userscript-highlight'; span.textContent = part; frag.appendChild(span); } }); node.parentNode.replaceChild(frag, node); } }); } else if (node.nodeType === 1 && node.childNodes) { // element var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT']; if (!skipTags.includes(node.tagName)) { Array.from(node.childNodes).forEach(highlight); } } } highlight(document.body); // Re-highlight on dynamic content var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1 || node.nodeType === 3) highlight(node); }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Strip utm_, fbclid, gclid, etc. from all links on page (function() { var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content', 'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid', 'ref', 'ref_src', 'source', 'medium', 'campaign']; function cleanUrl(url) { try { var u = new URL(url, window.location.origin); var changed = false; trackingParams.forEach(function(p) { if (u.searchParams.has(p)) { u.searchParams.delete(p); changed = true; } }); return changed ? u.toString() : url; } catch (e) { return url; } } function cleanLinks() { document.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } cleanLinks(); var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1) { if (node.tagName === 'A') cleanLinks(); node.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); } })(); (function(){ try { var __m = "youtube.com"; var __re = new RegExp('^' + "youtube\\.com" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Auto-enable theater mode on YouTube (function() { function tryTheater() { var btn = document.querySelector('button[aria-label="Theater mode"], ytd-player #player button[title="Theater mode"]'); if (btn && !btn.classList.contains('activated')) { btn.click(); } } // Try immediately tryTheater(); // Try after navigation (SPA) var lastUrl = location.href; setInterval(function() { if (location.href !== lastUrl) { lastUrl = location.href; setTimeout(tryTheater, 500); } }, 1000); // Also try on player load var observer = new MutationObserver(tryTheater); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Remove or un-stick sticky/fixed headers that block content (function() { function unstick() { document.querySelectorAll('header, nav, [role="banner"], .header, .navbar, .sticky, .fixed-top, [style*="position: fixed"], [style*="position:sticky"]').forEach(function(el) { if (el.style.position === 'fixed' || el.style.position === 'sticky' || getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') { el.style.position = 'static'; el.style.top = 'auto'; el.style.zIndex = 'auto'; } }); } unstick(); var observer = new MutationObserver(unstick); observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] }); })(); } } catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); } })(); })(); finding(data-objectstack): aggregate()'s spec-shape branch never reads `filter`/`field`/`function`, so an array `groupBy` on the LEGACY shape silently drops both the filter and the measure · Issue #6864 · objectstack-ai/objectui · GitHub
Skip to content

finding(data-objectstack): aggregate()'s spec-shape branch never reads filter/field/function, so an array groupBy on the LEGACY shape silently drops both the filter and the measure #6864

Description

@os-sam

Measured while running the census for #6825. Same predicate, different failure mode — filed separately so a narrowly-scoped ruling on #6825 cannot lose it. ⛔ Nothing was changed; this is a source read.

The measurement

ObjectStackAdapter.aggregate() (packages/data-objectstack/src/index.ts:4556-4573, on objectui aca70f6) selects the spec-shape branch with:

constlooksLikeSpecShape=params!=null&&(Array.isArray(params.groupBy)||Array.isArray(params.aggregations)||params.where!==undefined);

Inside that branch it reads only four keys:

if(Array.isArray(params.groupBy))queryAst.groupBy=params.groupBy;if(Array.isArray(params.aggregations))queryAst.aggregations=params.aggregations;if(params.where!==undefined)queryAst.where=params.where;if(typeofparams.limit==='number')queryAst.limit=params.limit;

params.filter, params.field and params.function are never read. They are not rejected and not warned about — they are simply absent from queryAst.

Why that is reachable from the LEGACY caller shape

Array.isArray(params.groupBy) is one of the three entry conditions, and the legacy analytics shape is { field, function, groupBy, filter }. So a caller that sends the legacy shape but whose groupBy happens to be an array lands in the spec-shape branch, where:

  • its filter is dropped — the server aggregates the whole table while the caller believes a filter was applied;
  • its field / function are dropped too, so queryAst carries a groupBy with no aggregations at all — a grouping with no measure requested.

Three in-tree callers forward an authored groupBy into that predicate without constraining its type:

  • packages/plugin-dashboard/src/DashboardRenderer.tsx:623 and :704groupBy: providerAgg.groupBy, alongside filter: widgetData.filter || widget.filter
  • packages/plugin-dashboard/src/DashboardGridLayout.tsx:280 — same forward
  • packages/plugin-dashboard/src/ObjectMetricWidget.tsx:246groupBy: aggregate.groupBy || '_all', alongside filter: filterForRun

In every one of them groupBy comes straight from authored widget metadata, and none of them is typed: the datasource is ds: any / adapter at those seams.

Contract status

The declared contract at this seam, AggregateParams (packages/types/src/data.ts:1248-1258), says:

exportinterfaceAggregateParams{field: string;function: string;groupBy: string;// a STRINGfilter?: any;}

It declares no where and no aggregations key at all, and groupBy as a plain string. So the whole spec-shape branch accepts a params shape this interface does not describe, and the drop above happens between two keys (filter vs where) of which only one is declared.

Reachability today: NOT established (same as #6825)

The census for #6825 swept the whole worktree (5503 files across .json/.ts/.tsx/.mdx/.md/.yaml/.yml, excluding node_modules/dist/build/.git/.next/coverage/.turbo) and found zero authored aggregate.groupBy written as an array or an object — every one of the 18 aggregate + groupBy sites passes a string. So this is latent, exactly like #6825, and I am NOT claiming a live defect.

Recording it anyway because the severity judgement is triage's, not mine, and because this variant is the one whose symptom matches the p1 condition triage wrote on #6825: the filter is dropped silently, the chart still renders, and the numbers are wrong with nothing to see.

Relationship to #6825

#6825 asks what branch 2 should do with a where it does not lower. This card asks what branch 2 should do with the keys it does not read. Both are answered by the same maintainer ruling about what that branch's accepted shape actually is, so this is probably a sub-question of that ruling rather than an independent repair — noted so it can be folded in rather than fixed separately.

Refs: #6825 (the census this came out of) - #6302 / PR #6828 (the analytics-branch lowering) - #6206 (the sibling contract question about element:number's filter being declared an object while every other filter input is an array)

Generated by Claude Code

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions