adriaparcerisasnear developer 3
    Updated 2024-03-23
    -- Find the repositories with the most forks
    SELECT
    repo_name,
    COUNT(*) AS fork_count
    FROM
    near.core.fact_developer_activity
    WHERE
    endpoint_github='forks'
    GROUP BY
    repo_name
    ORDER BY
    fork_count DESC
    LIMIT 10


    QueryRunArchived: QueryRun has been archived