How can i use bitquery graphql for example swap Function Senders from bloxy.info

hello

from bloxy
https://bloxy.info/functions/022c0d9f

how can i use graphql to find all swap Function Senders?
it is huge list

if you go to this page https://bloxy.info/functions/022c0d9f you will see swap Function Senders table with all smart-contract addresses

and i want to get this smart-contract addresses with grapql

how can i do it?

thank you

Hey @eugenereznikdesign does this query solve your primary issue?

{
  ethereum(network: bsc){
    smartContractCalls(
      options: {limit: 10}
      smartContractMethod: {is: "swap"}
    ){
      smartContract{
        address{
          address
        }
      }
    }
  }
}