-- forked from Test @ https://flipsidecrypto.xyz/edit/queries/ef7b2627-97e8-4ceb-abf1-0cbdaa5ea898
select date_trunc('day',BLOCK_TIMESTAMP) as date ,count(distinct MINT) as mints,label
from solana.core.fact_nft_mints a
join solana.core.dim_labels b
on a.mint = b.address
where label = '{{nft}}'
group by 1,3