adriaparcerisasNear Repos stats
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 activity as (
SELECT
repo_name,
COUNT(*) AS activity_count
FROM
near.core.fact_developer_activity
GROUP BY
repo_name
),
forks as (
-- 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
),
commits as (
-- Find the repositories with the most commits
SELECT
repo_name,
COUNT(*) AS commits_count
FROM
near.core.fact_developer_activity
WHERE
endpoint_github='commit_activity'
GROUP BY
repo_name
),
-- Calculate average commits per day for each repository
commitss as (
QueryRunArchived: QueryRun has been archived