I intermittently get the following error and I’m not sure why. It only shows up once every few hundred queries using the exact same code. Any ideas?
System error: Duplicate type definition found for name ‘OutputIndexSelector’ at ‘Argument outputIndex on Binance.transfers’ (Types::Chain::Binance::OutputIndexSelector, Types::Chain::Binance::OutputIndexSelector)
Below is my query:
{
ethereum(network: ethereum) {
transfers(
options: {desc: “block.timestamp.time”, asc: “currency.symbol”, offset: 0}
date: {since: “2021-06-01” till: “2022-02-02”}
amount: {gt: 0}
receiver: {is: “0x07058f4BdC6BdaeE93b49fe30Ff11FDa646ceca0”}
) {
block {
timestamp {
time(format: “%Y-%m-%d %H:%M:%S”)
}
height
}
sender {
address
annotation
}
receiver {
address
annotation
}
currency {
address
symbol
name
tokenType
}
amount
amountUSD: amount(in: USD)
transaction {
hash
gas
gasPrice
}
external
}
}
}