Skip to content

Commit 2a0dbf2

Browse files
committed
fix(web): increased draw query results up to 1000
1 parent c7dc6b4 commit 2a0dbf2

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)