Flexible data exploration without a throwaway placeholder screen
The explorer now behaves like a real destination inside the template, with saved-query context, schema guidance, and a plausible result table.
Saved queries
42
Reusable across reports
Avg. runtime
1.8s
Warehouse-backed
Connected sources
6
Product, billing, CRM, support
Views shared
17
Pinned by the team
Pinned revenue-quality query
A realistic SQL block gives the page weight and shows how an analyst would move from raw events to decision-ready metrics.
SELECT
signup_week,
plan_tier,
COUNT(DISTINCT workspace_id) AS workspaces,
ROUND(AVG(activation_score), 2) AS avg_activation,
ROUND(SUM(expanded_arr) / NULLIF(SUM(starting_arr), 0), 2) AS expansion_ratio
FROM cohort_health
WHERE signup_week >= DATE '2026-03-01'
GROUP BY 1, 2
ORDER BY signup_week DESC, avg_activation DESC;