Open coffeetimes opened 4 years ago
https://thegraph.com/explorer/subgraph/uniswap/uniswap-v2 Not a big deal but the Default example query includes pairs field that is not defined in UniswapFactory.
pairs
{ uniswapFactories(first: 5) { id pairCount pairs { id } totalVolumeUSD } tokens(first: 5) { id symbol name decimals } }
And the Playground shows the error "Type UniswapFactory has no field pairs".
UniswapFactory
@KaitoYanai I think it is a usual thing for most subgraphs. At least in my case almost each example query has such kind of issue. Just insert this as a record in your report.
https://thegraph.com/explorer/subgraph/uniswap/uniswap-v2 Not a big deal but the Default example query includes
pairs
field that is not defined in UniswapFactory.{ uniswapFactories(first: 5) { id pairCount pairs { id } totalVolumeUSD } tokens(first: 5) { id symbol name decimals } }
And the Playground shows the error "Type
UniswapFactory
has no fieldpairs
".