From c333a69fc555c0137a07973c8e7c4f2a6a827da4 Mon Sep 17 00:00:00 2001 From: sharppanda Date: Tue, 15 Dec 2020 00:19:05 +0100 Subject: [PATCH] Fix indexers query to include all indexers Default size of a query is 100 (we currently have more than 200 validators) --- .config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config.json b/.config.json index c56f3d2..6bd9c14 100644 --- a/.config.json +++ b/.config.json @@ -1 +1 @@ -[{"query": "{ indexers { id queryFeesCollected queryFeeRebates} }", "URL": "https://gateway-testnet.thegraph.com/network"}] +[{"query": "{ indexers (first:1000) { id queryFeesCollected queryFeeRebates} }", "URL": "https://gateway-testnet.thegraph.com/network"}]