mu-tafaUntitled Query
    Updated 2022-07-25
    SELECT
    sum(a.price) as volume,
    date_trunc(day,a.block_timestamp) as date
    from flow.core.fact_nft_sales a left join flow.core.dim_topshot_metadata b on a.nft_id=b.nft_id
    where b.play_type='3 Pointer'
    group by date
    Run a query to Download Data