adriaparcerisasnear developer 1
    Updated 2024-03-23
    -- Find the most active repositories
    SELECT
    repo_name,
    COUNT(*) AS activity_count
    FROM
    near.core.fact_developer_activity
    GROUP BY
    repo_name
    ORDER BY
    activity_count DESC
    LIMIT 10


    QueryRunArchived: QueryRun has been archived