Skip to content

Commit

Permalink
reduce the queryLimit to Strapi default 100
Browse files Browse the repository at this point in the history
  • Loading branch information
laurenskling committed Dec 20, 2024
1 parent ce74ac3 commit c837f0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/gatsby-source-strapi/src/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ const getEndpoints = ({ collectionTypes, singleTypes, version = 5 }, schemas) =>
queryParams: {
...queryParams,
pagination: {
pageSize: queryLimit || 250,
pageSize: queryLimit || 100,
page: 1,
},
populate: queryParams?.populate || "*",
Expand Down

0 comments on commit c837f0d

Please sign in to comment.