No results for token SMRAT (pancakeswap)

Hello together

I have tried several versions from existing queries, but none work with the Secured Moonrat (SMRAT) token.

However, it works with other tokens.

Exchange: Pancakeswap
Token: SMRAT
Contract ID: 0x68590a47578e5060a29fd99654f4556dbfa05d10
BSCSCAN: https://www.bscscan.com/token/0x68590a47578e5060a29fd99654f4556dbfa05d10

Among other things, I tried this code in https://graphql.bitquery.io/ide:

{
ethereum(network: bsc) {
dexTrades(
options: {limit: 2, desc: “block.timestamp.time”}
exchangeName: {is: “Pancake”}
baseCurrency: {is: “0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c”}
quoteCurrency: {is: “0x68590a47578e5060a29fd99654f4556dbfa05d10”}
) {
block {
timestamp {
time(format: “%Y-%m-%d %H:%M:%S”)
}
}
baseCurrency {
symbol
address
}
baseAmount
quoteCurrency {
symbol
address
}
quoteAmount
trades: count
quotePrice
}
}
}

Can someone help here please?

Always check our Blockchain Explorer first.

As you can see here, Smart token is getting traded against WBNB. To get the latest trade of SMART token, please check the following query.

{
  ethereum(network: bsc) {
    dexTrades(options: {desc: ["block.height", "tradeIndex"], limit: 10}, date: {since: "2021-05-17"}, baseCurrency: {is: "0x68590a47578e5060a29fd99654f4556dbfa05d10"}, quoteCurrency: {is: "0xbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c"}) {
      block {
        timestamp {
          time(format: "%Y-%m-%d %H:%M:%S")
        }
        height
      }
      tradeIndex
      exchange {
        fullName
      }
      smartContract {
        address {
          address
          annotation
        }
      }
      baseAmount
      baseCurrency {
        address
        symbol
      }
      quoteAmount
      quoteCurrency {
        address
        symbol
      }
      transaction {
        hash
      }
    }
  }
}