Help creating a daily active addresses count

How do I calculate the daily active address count from genesis to the most recent day and have the results printed out for each date over the time period? I tried creating this and it doesn’t work. Any help would be appreciated.

query MyQuery
{
conflux(network: conflux_hydra)
{
activeAddresses(date: {since: “2020-10-30”})
{
count(uniq: address)
{
date(format: “%y-%m-%d”)
}
}
}
}

1 Like