@@ -14,7 +14,6 @@ export const getProgramsByUserAndTag = gql`
14
14
query ($userAddress: String!, $chainIds: [Int!]!, $tags: jsonb) {
15
15
projects(
16
16
orderBy: { timestamp: DESC }
17
- limit: 100
18
17
where: {
19
18
tags: { _contains: $tags }
20
19
chainId: { _in: $chainIds }
@@ -27,7 +26,7 @@ export const getProgramsByUserAndTag = gql`
27
26
metadataCid
28
27
tags
29
28
createdByAddress
30
- projectRoles(limit: 100) {
29
+ projectRoles {
31
30
address
32
31
role
33
32
createdAtBlock
@@ -70,7 +69,7 @@ export const getProgramById = gql`
70
69
metadataCid
71
70
tags
72
71
createdByAddress
73
- projectRoles(limit: 100) {
72
+ projectRoles {
74
73
address
75
74
role
76
75
createdAtBlock
@@ -91,7 +90,6 @@ export const getProjectsById = gql`
91
90
# @param $projectId - The ID of the project
92
91
query ($alloVersion: String!, $projectId: String!) {
93
92
projects(
94
- limit: 100
95
93
where: {
96
94
tags: { _hasKey: $alloVersion }
97
95
projectType: { _eq: "canonical" }
@@ -110,7 +108,7 @@ export const getProjectsById = gql`
110
108
nonce
111
109
anchorAddress
112
110
projectType
113
- projectRoles(limit: 100) {
111
+ projectRoles {
114
112
address
115
113
role
116
114
createdAtBlock
@@ -191,7 +189,6 @@ export const getApplicationsByProjectIds = gql`
191
189
$chainIds: [Int!]!
192
190
) {
193
191
applications(
194
- limit: 100
195
192
where: { projectId: { _in: $projectIds }, chainId: { _in: $chainIds } }
196
193
) {
197
194
id
@@ -219,7 +216,6 @@ export const getApplicationsByProjectIds = gql`
219
216
export const getApprovedApplicationsByProjectIds = gql `
220
217
query getApprovedApplicationsByProjectIds($projectIds: [String!]!) {
221
218
applications(
222
- limit: 100
223
219
where: { projectId: { _in: $projectIds }, status: { _eq: APPROVED } }
224
220
) {
225
221
id
@@ -250,7 +246,6 @@ export const getApprovedApplicationsByProjectIds = gql`
250
246
export const getApplicationsForManager = gql `
251
247
query getApplicationsForManager($chainId: Int!, $roundId: String!) {
252
248
applications(
253
- limit: 100
254
249
where: { roundId: { _eq: $roundId }, chainId: { _eq: $chainId } }
255
250
) {
256
251
id
@@ -341,7 +336,6 @@ export const getApprovedApplication = gql`
341
336
export const getApplicationsForExplorer = gql `
342
337
query Applications($chainId: Int!, $roundId: String!) {
343
338
applications(
344
- limit: 100
345
339
where: {
346
340
chainId: { _eq: $chainId }
347
341
roundId: { _eq: $roundId }
@@ -383,7 +377,6 @@ export const getApplicationsByRoundIdAndProjectIds = gql`
383
377
$projectIds: [String!]!
384
378
) {
385
379
applications(
386
- limit: 100
387
380
where: {
388
381
chainId: { _eq: $chainId }
389
382
roundId: { _eq: $roundId }
@@ -425,7 +418,6 @@ export const getProjectsByAddress = gql`
425
418
$role: project_role_name!
426
419
) {
427
420
projectRoles(
428
- limit: 100
429
421
where: {
430
422
address: { _eq: $address }
431
423
chainId: { _eq: $chainId }
@@ -530,15 +522,14 @@ export const getProjectsAndRolesByAddress = gql`
530
522
$chainIds: [Int!]!
531
523
) {
532
524
projects(
533
- limit: 100
534
525
where: {
535
526
projectRoles: { address: { _eq: $address } }
536
527
tags: { _contains: [$version] }
537
528
_not: { tags: { _contains: "program" } }
538
529
chainId: { _in: $chainIds }
539
530
}
540
531
) {
541
- projectRoles(limit: 100) {
532
+ projectRoles {
542
533
role
543
534
address
544
535
projectId
@@ -555,7 +546,7 @@ export const getProjectsAndRolesByAddress = gql`
555
546
anchorAddress
556
547
projectType
557
548
createdAtBlock
558
- applications(limit: 100) {
549
+ applications {
559
550
id
560
551
metadata
561
552
}
@@ -601,7 +592,7 @@ export const getRoundsQuery = gql`
601
592
strategyId
602
593
strategyName
603
594
strategyAddress
604
- applications(limit: 100) {
595
+ applications {
605
596
id
606
597
status
607
598
}
@@ -634,7 +625,7 @@ export const getRoundByIdAndChainId = gql`
634
625
strategyName
635
626
readyForPayoutTransaction
636
627
projectId
637
- roundRoles(limit: 100) {
628
+ roundRoles {
638
629
role
639
630
address
640
631
}
@@ -670,7 +661,7 @@ const getRoundForManagerFields = `
670
661
fundedAmount
671
662
fundedAmountInUsd
672
663
matchingDistribution
673
- roundRoles(limit: 100) {
664
+ roundRoles {
674
665
role
675
666
address
676
667
createdAtBlock
@@ -702,7 +693,6 @@ export const getRoundsForManager = gql`
702
693
query getRoundsForManager($chainId: Int!, $programId: String!) {
703
694
rounds(
704
695
orderBy: {timestamp:DESC}
705
- limit: 100
706
696
where: {
707
697
chainId: { _eq: $chainId }
708
698
projectId: { _eq: $programId }
@@ -718,7 +708,6 @@ export const getRoundsForManagerByAddress = gql`
718
708
query getRoundsForManager($chainIds: [Int!]!, $address: String!) {
719
709
rounds(
720
710
orderBy: {timestamp:DESC}
721
- limit: 100
722
711
where: {
723
712
roundMetadata: { _isNull: false },
724
713
chainId: { _in: $chainIds},
@@ -761,7 +750,7 @@ export const getRoundForExplorer = gql`
761
750
strategyAddress
762
751
strategyName
763
752
readyForPayoutTransaction
764
- applications(limit: 100, where: { status: { _eq: APPROVED } }) {
753
+ applications(where: { status: { _eq: APPROVED } }) {
765
754
id
766
755
projectId
767
756
status
@@ -779,7 +768,6 @@ export const getRoundForExplorer = gql`
779
768
export const getDonationsByDonorAddress = gql `
780
769
query getDonationsByDonorAddress($address: String!, $chainIds: [Int!]!) {
781
770
donations(
782
- limit: 100
783
771
where: { chainId: { _in: $chainIds }, donorAddress: { _eq: $address } }
784
772
) {
785
773
id
0 commit comments