cypherUntitled Query
Updated 2023-01-23
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
›
⌄
with monthly_active as (select
date_trunc('month', createdat) as date,
count(distinct(author)) as unique_developers
from near.beta.github_activity
group by date),
first_app as (select
author,
min(createdat) as first_commit
from near.beta.github_activity
group by author
),
monthly_new_dev as (select
date_trunc('month', first_commit) as date,
count(*) as new_dev
from first_app
group by date
)
select *, from monthly_active a
join monthly_new_dev n using (date)
Run a query to Download Data