From d1d1ab7dac2c6bebf522e3e983020104b97abacc Mon Sep 17 00:00:00 2001 From: rakeshup Date: Thu, 4 Jan 2024 15:23:25 +0530 Subject: [PATCH] Chore: Changing voters and approvers count to 1000 from the default value of 100 (#317) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Changing voters and approvers count to 1000 from the default value of 100 * Updated Changelog * update changelog and package.json --------- Co-authored-by: Jose Manuel MariƱas Bascoy --- modules/client/CHANGELOG.md | 4 ++++ modules/client/package.json | 2 +- .../client/src/multisig/internal/graphql-queries/proposal.ts | 2 +- .../src/tokenVoting/internal/graphql-queries/proposal.ts | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/modules/client/CHANGELOG.md b/modules/client/CHANGELOG.md index da8bcabf2..7afc84677 100644 --- a/modules/client/CHANGELOG.md +++ b/modules/client/CHANGELOG.md @@ -19,6 +19,10 @@ TEMPLATE: ## [UPCOMING] +### Changed +- Chore: Changed voters and approvers count to 1000 from the default value of 100 in Proposal Queries + +## [1.21.0] ### Changed -Update `osx-ethers` to v1.3.0 diff --git a/modules/client/package.json b/modules/client/package.json index bf286bde8..e7bc84793 100644 --- a/modules/client/package.json +++ b/modules/client/package.json @@ -1,7 +1,7 @@ { "name": "@aragon/sdk-client", "author": "Aragon Association", - "version": "1.21.0", + "version": "1.21.1", "license": "MIT", "main": "dist/index.js", "module": "dist/sdk-client.esm.js", diff --git a/modules/client/src/multisig/internal/graphql-queries/proposal.ts b/modules/client/src/multisig/internal/graphql-queries/proposal.ts index 3391b31c8..b7ddd2631 100644 --- a/modules/client/src/multisig/internal/graphql-queries/proposal.ts +++ b/modules/client/src/multisig/internal/graphql-queries/proposal.ts @@ -29,7 +29,7 @@ query MultisigProposal($proposalId: ID!) { executed approvalReached isSignaling - approvers{ + approvers(first: 1000){ id } } diff --git a/modules/client/src/tokenVoting/internal/graphql-queries/proposal.ts b/modules/client/src/tokenVoting/internal/graphql-queries/proposal.ts index 452bd8723..7510a7e2a 100644 --- a/modules/client/src/tokenVoting/internal/graphql-queries/proposal.ts +++ b/modules/client/src/tokenVoting/internal/graphql-queries/proposal.ts @@ -31,7 +31,7 @@ query TokenVotingProposal($proposalId: ID!) { approvalReached isSignaling executionTxHash - voters{ + voters(first: 1000){ voter{ address }