Skip to content

Instantly share code, notes, and snippets.

View john-glean's full-sized avatar

John Pentakalos john-glean

View GitHub Profile
@john-glean
john-glean / artifact_funnel_query.sql
Created May 15, 2026 22:36
Artifact Funnel Query
WITH artifact_cohort AS (
SELECT
s.artifact_id
, s.user_id
, s.n_versions
, s.has_copy
, s.has_export
, s.n_other_viewers
FROM zz_dbt_jpentakalos.artifact_summary AS s
JOIN dim.all_deployments AS d USING (project_id)