Ethereum->dexTrades->side is not working

Hey there! I cant get the side of the trades when querying BigQuery. It errors with two different error. Tickets on main website is not working apparently. Have anyone faced this before?

Can you send the query here?

For example,

 {
        ethereum(network: bsc) {
          dexTrades(
            options: {limit: 10}
          ) {
            side
            transaction {
              hash
            }
          }
        }
      }

You can only use side param when you are querying the Trade details of a particular token pair like the query below.

{
  ethereum(network: bsc) {
    dexTrades(
      options: {desc: "tradeAmount", limit: 50}
      baseCurrency: {is: "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c"}
      buyCurrency: {is: "0xbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c"}
      time: {
        since: "2021-08-02T12:17:00", 
        till: "2021-08-02T23:59:59"
      }
    ) {
      exchange {
        fullName
      }
      smartContract {
        address {
          address
        }
      }
      buyCurrency {
        symbol
        address
      }
      sellCurrency {
        symbol
        address
      }
      tradeAmount(in: USD)
      trades_count: count
      side
    }
  }
}