Why there are duplicate blocks in results of API v2?

query MyQuery {
  EVM(dataset: archive, network: eth) {
    MinerRewards(limit: {count: 10}, orderBy: {ascending: Block_Number}) {
      Reward {
        Total
        ..... 
      }
      Block {
        Number
        Time
      }
    }
  }
}

give me duplicate entries with the same height

{
        "Block": {
          "Number": "4",
          "Time": "2015-07-30T15:27:57Z"
        },
        "Reward": {
          "BurntFees": "0.000000000000000000",
          "Dynamic": "0.000000000000000000",
          "Static": "0.000000000000000000",
          "Total": "3.125000000000000000",
          "TxFees": "0.000000000000000000"
        }
      },
      {
        "Block": {
          "Number": "4",
          "Time": "2015-07-30T15:27:57Z"
        },
        "Reward": {
          "BurntFees": "0.000000000000000000",
          "Dynamic": "0.000000000000000000",
          "Static": "5.000000000000000000",
          "Total": "5.156250000000000000",
          "TxFees": "0.000000000000000000"
        }
      },

why there are 2 blocks with the same height “4”? how to resolve that? (the chain is ethereum)

Mean while we fix this problem limit it by Blocknumber and it will fix you problem

@gaurav Thanks, is there any update on this?

Please try this query, it will solve your problem

query MyQuery {
  EVM(dataset: archive, network: eth) {
    MinerRewards(
      limitBy: {by: Block_Number, count: 1}
      limit: {count: 10}
      orderBy: {ascending: Block_Number}
    ) {
      Reward {
        Total
      }
      Block {
        Number
        Time
      }
    }
  }
}