Skip to content

Commit 7ddf34f

Browse files
authored
Merge pull request #1339 from kleros/fix(web)/increase-draw-query-results
fix(web): increased draw query results up to 1000
2 parents c7dc6b4 + 2a0dbf2 commit 7ddf34f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/src/hooks/queries/useDrawQuery.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export type { DrawQuery };
66

77
const drawQuery = graphql(`
88
query Draw($address: String, $disputeID: String, $roundID: String) {
9-
draws(where: { dispute: $disputeID, juror: $address, round: $roundID }) {
9+
draws(first: 1000, where: { dispute: $disputeID, juror: $address, round: $roundID }) {
1010
voteIDNum
1111
}
1212
}

0 commit comments

Comments
 (0)