winnie-fsNear Repos numbers copy
Updated 2023-10-11
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
-- forked from adriaparcerisas / Near Repos numbers @ https://flipsidecrypto.xyz/adriaparcerisas/q/qm9ZtrWGB1kh/near-repos-numbers
-- activity
with repos as (
SELECT
count(distinct repo_name) as repos
FROM
near.core.fact_developer_activity
),
devs as (
SELECT
count(distinct repo_owner) as devs
FROM
near.core.fact_developer_activity
),
forks as (
-- Find the repositories with the most forks
SELECT
COUNT(*) AS fork_count
FROM
near.core.fact_developer_activity
WHERE
endpoint_github='forks'
),
commits as (
-- Find the repositories with the most commits
SELECT
COUNT(*) AS commits_count
FROM
near.core.fact_developer_activity
WHERE
endpoint_github='commit_activity'
Run a query to Download Data