New PancakeSwap Coins

Hi all. Iam newbie in bitquery.
I trying get a new listed PancakeSwap Coins
I using this query in my project

{
        ethereum(network: bsc) {
          arguments(
            smartContractAddress: {
              is: "0xBCfCcbde45cE874adCB698cC183deBcF17952812"
             

            }
            smartContractEvent: { is: "PairCreated" }
            argument: { not: "pair" }
            options: { desc: "block.timestamp.unixtime", limit: 50 }
          ) {
            block {
              height
              timestamp {
                unixtime
              }
            }
            reference {
              address
              smartContract {
                currency {
                  name
                  symbol
                }
              }
            }
          }
        }
      }
    `

But very slowly response. Why coult it be? Or have any Graphql query for share with me

Thanks

try this

1 Like

Thanks mate! Its working

I fetched thousands of latest tokens, but when I see latest coinmarketcap token I can’t find single token in what bitquery returned, why’s that ?