Query new pairs created and volume greater than 10k on BSC

Check this

{
  ethereum(network: bsc) {
    dexTrades(options: {limit: 100, desc: ["block.height", "tradeIndex"]},
      date: {since: "2021-06-05"}
      tradeAmountUsd : {gt: 10000}
      exchangeName: {in: ["Pancake", "Pancake v2"]}) {
      transaction {
        hash
      }
      smartContract{
        address{
          address
        }
        contractType
        currency{
          name
        }
      }
      tradeIndex
      date {
        date
      }
      block {
        height
      }
      buyAmount
      buyAmountInUsd: buyAmount(in: USD)
      buyCurrency {
        symbol
        address
      }
      sellAmount
    	sellAmountInUsd: sellAmount(in: USD)
      sellCurrency {
        symbol
        address
      }
      sellAmountInUsd: sellAmount(in: USD)
      tradeAmount(in: USD)
      transaction{
        gasValue
        gasPrice
        gas
      }
    }
  }
}