adriaparcerisasNear Repos numbers
Updated 2024-03-23
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
›
⌄
-- 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'
),
QueryRunArchived: QueryRun has been archived