We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug Subgraph does not have all of the expected repays.
Reproduction Where can we see this bug in action?
{ accounts(where: {id: "0xa53a13a80d72a855481de5211e7654fabdfe3526"}) { repays( where: {asset_: {id: "0xdac17f958d2ee523a2206206994597c13d831ec7"}} first: 1000 ) { asset { id decimals } amount amountUSD blockNumber timestamp hash } } }
Expected behavior We can query aave's official subgraph and see there is data available.
Query
query MyQuery { repays( where: {repayer: "0xa53a13a80d72a855481de5211e7654fabdfe3526", reserve_contains: "0xdac17f958d2ee523a2206206994597c13d831ec7"} first: 1000 ) { txHash timestamp amount assetPriceUSD reserve { id name decimals } } }
The text was updated successfully, but these errors were encountered:
melotik
No branches or pull requests
Describe the bug
Subgraph does not have all of the expected repays.
Reproduction
Where can we see this bug in action?
Query:
Expected behavior
We can query aave's official subgraph and see there is data available.
Query
The text was updated successfully, but these errors were encountered: