How to get filter USDT on TRON and SOLANA chain

Hello i want to filtering on 2 chains for USDT smart contract.

How can i do this ?


query ($address: String!, $limit: Int!, $offset: Int!, $from: ISO8601DateTime, $till: ISO8601DateTime) {
  tron {
    
    transfers(
      options: {asc: "block.timestamp.time", limit: $limit, offset: $offset}
      date: {since: $from, till: $till}
      amount: {gt: 0}
      sender: {is: $address}
  
    ) {
      block {
        timestamp {
          time(format: "%Y-%m-%d %H:%M:%S")
        }
        height
      }
      address: receiver {
        address
        annotation
      }
      currency {
        address
        symbol
        tokenId
        tokenType
      }
      amount
      txHash
    }
  }
}

You can do it like this

query(){
tron  {
  }
ethereum{
 }
}