Maintained data foundation
Connected commerce data is modeled, tested, and documented before it becomes analytical context.
Ask questions in Slack and get answers grounded in the same governed definitions as your dashboards. Analytical answers can show their sources, assumptions, and the SQL they ran.
The AI Analyst runs on your data in BigQuery.
This illustrative sample shows an analytical answer with sources, assumptions, a chart, and SQL. Ask a question in Slack, then follow up in the same thread.
Questions you can ask
What's our average CAC by channel in the last 30 days?
This 30-day result has two paid sales channels with measurable CAC: Marketplace = $77.81 and Online store = $399.99. Online store CAC is about 5.1x higher. If your target CAC is below $100, investigate that channel first.
| Channel | Ad Spend | New Customers | CAC |
|---|---|---|---|
| marketplace | $393,270 | 5,054 | $78 |
| online_store | $1,919,529 | 4,799 | $400 |
-- Analysis: CAC by channel using executive summary table
-- Assumptions: timeframe=last_30_days | metric=cac=ad_spend/new_customer_count | grain=sm_channel | scope=channels_with_spend
SELECT
COALESCE(NULLIF(LOWER(TRIM(sm_channel)), ''), '(unknown)') AS sm_channel,
SUM(ABS(ad_spend)) AS ad_spend,
SUM(new_customer_count) AS new_customers,
SAFE_DIVIDE(SUM(ABS(ad_spend)), NULLIF(SUM(new_customer_count), 0)) AS cac
FROM `your_project.sm_transformed_v2.rpt_executive_summary_daily`
WHERE date >= DATE_SUB(CURRENT_DATE(), INTERVAL 30 DAY)
AND ad_spend IS NOT NULL
AND new_customer_count IS NOT NULL
GROUP BY 1
HAVING ad_spend > 0
ORDER BY cac ASC
LIMIT 10;
How it is grounded
The AI Analyst uses the same maintained definitions as dashboards and BigQuery, so the answer does not live in a separate black box.
Connected commerce data is modeled, tested, and documented before it becomes analytical context.
Ask a question, review the response, and continue with follow-up questions in the same thread.
Analytical answers can expose the underlying SQL. Documentation and methodology answers cite the governing sources.
Move from what changed to the channels, cohorts, products, or customer segments that explain the result.
Ask how a metric is defined or how a model assigns credit, then inspect the governing documentation.
Review the query, export the relevant rows, or adapt the SQL for a deeper investigation in BigQuery.
Decision-ready context without a dashboard scavenger hunt
Customers
In 30 minutes, we will
Map your current systems and reporting gaps.
Show one workflow relevant to your team.
Outline likely fit, implementation scope, and next steps.
Book a platform walkthrough
Share a little context, then choose a time immediately after submitting.
We couldn't load available times here.
Open the scheduling calendar in a new tab. If you cannot schedule now, we will still follow up.
Open scheduling calendar