Skip to content
Snippets Groups Projects

Increase the page size for the contributions GraphQL query

Merged Adam Hegyi requested to merge 431546-use-500-batch-size-for-ca into master
2 unresolved threads
Files
2
@@ -84,7 +84,7 @@ export default {
try {
const { endDate, nextStartDate } = this.limitPostgresqlRequests(startDate, this.endDate);
const pageSize = gon.features.use500PageSizeForContributionAnalytics ? 500 : null;
const pageSize = gon.features?.use500PageSizeForContributionAnalytics ? 500 : null;
const { data } = await this.$apollo.query({
query: contributionsQuery,
Loading