synthquestTOTAL Top Subgraphs Per Network copy
    Updated 2023-09-12
    -- forked from Mainnet Top Subgraphs Per Network @ https://flipsidecrypto.xyz/edit/queries/a33d852d-e558-49cf-a869-9a72a4db0351

    -- forked from Kwenta Smartmargin Subgraph Pull - Owners @ https://flipsidecrypto.xyz/edit/queries/8d470a2b-eef9-4185-815d-1e88cbca83b0


    with thegraph_Mainnet as (

    with raw as (
    SELECT
    livequery.live.udf_api(
    'POST',
    'https://api.thegraph.com/subgraphs/name/graphprotocol/graph-network-arbitrum',
    {'Content-Type': 'application/json'},
    {'query':'{
    networks(where: {id: "mainnet"}) {
    deployments(
    orderBy: indexingRewardAmount
    orderDirection: desc
    where: {indexingRewardAmount_gt: "0", network_contains: "mainnet"}
    ) {
    originalName
    queryFeesAmount
    indexingRewardAmount
    id
    curatorFeeRewards
    indexingIndexerRewardAmount
    indexingDelegatorRewardAmount
    }
    }
    }
    ',
    'variables':{}
    }
    ) as rawoutput
    )
    Run a query to Download Data