mmdrezaFollow adn unfollow
    Updated 2023-06-17
    with follow as (
    select
    'follow' as type,
    count(distinct tx_hash) as follow
    from near.social.fact_decoded_actions
    where node_data:graph ilike '%follow%'
    group by 1
    ),
    unfollow as (
    select
    'unfollow' as type,
    count(distinct tx_hash) as Unfollow
    from near.social.fact_decoded_actions
    where node_data:graph ilike '%unfollow%'
    group by 1
    )
    select * from follow
    union all
    select * from unfollow

    Run a query to Download Data