Returning argument values from call to another contracts method

hi guys, i’m trying to return the value of the arguments in this “governanceShare” method, from smartcontract: (0xbaf9a5d4b0052359326a6cdab54babaa3a3a9643).
This contract (0x0ef1b8a0e726fc3948e15b23993015eb1627f210), calls contract (…643), when performing a swap, to obtain the values of the arguments within governanceShare.
I’m having trouble returning the values.
Could you help me with the code?

My attempt:
query MyQuery {
ethereum {
smartContractCalls(
caller: {is: “0x0ef1b8a0e726fc3948e15b23993015eb1627f210”}
date: {is: “21-06-23”}
) {
smartContract {
address {
address
annotation
}
}
smartContractMethod {
name
signature
}
amount(smartContractMethod: {is: “shareParameters”})
callDepth
}
}
}

Note the caller in this screenshot is not always (…f210).
To trace how I found, goto bitquery explorer:
1 - 0x0ef1b8a0e726fc3948e15b23993015eb1627f210
2 - “Events”
3 - “Sync” event count (Events in Ethereum Mainnet)
4 - click any transaction hash (Transaction 0xb7b7f611c81975bc8e103257542485db67b0a3704c973b5761dde2802f2e3739 | Ethereum Mainnet)
5 - “Calls” tab (Calls Ethereum Mainnet 0xb7b7f611c81975bc8e103257542485db67b0a3704c973b5761dde2802f2e3739)

And you will see the screenshot above. Every Sync event calls (…643) and uses the values of the arguments in “shareParameters”. I’d like to return the values it calls.
Thanks

I think arguments of the internal calls is not allowed, I tried the following query but didn’t work.

However, I have raised this with devs.

{
  ethereum(network: ethereum) {
    arguments(
      smartContractMethod: {is: "shareParameters"}
      smartContractAddress: {is: "0xbaf9a5d4b0052359326a6cdab54babaa3a3a9643"}
      txHash: {is: "0xb7b7f611c81975bc8e103257542485db67b0a3704c973b5761dde2802f2e3739"}
    ) {
      argument{
        name
        type
      }
      block {
        timestamp {
          hour
        }
      }
    }
  }
}

Thanks for checking Gaurav

HI Gaurav,
did the developers get back to you??
Steven

Have not found shareParameters argument, but the query can look as

{
  ethereum(network: ethereum) {
    arguments(
			smartContractEvent: {is: "Sync"}
      smartContractAddress:  {is: "0x0ef1b8a0e726fc3948e15b23993015eb1627f210"}

      txHash: {is: "0xb7b7f611c81975bc8e103257542485db67b0a3704c973b5761dde2802f2e3739"}
    ) {
      argument{
        name
        type
      }
      value {
        value
      }
      block {
        timestamp {
          hour
        }
      }

      
    }
  }
}