You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 26, 2021. It is now read-only.
the contentful api only allows up to 1000 items returned in a given query. it'd be nice to provide a query batcher that lets you build a site with more than 1000 entries.
The text was updated successfully, but these errors were encountered:
Actually that make sense, and I guess we need to change this logic here if I am not mistaken, and to handle pagination using the query params, skip and limit, actually we have this logic already implemented in contentful-export and contentful-space sync.
Here is the snippet of code.
One more thing to be careful of that sometimes entries with a lot of text in one page could exceed the maximum response size which is 8MB so I guess the setting the limit should be up to the user based on his content, so he can lower the limit value to have responses < 8MB
the contentful api only allows up to 1000 items returned in a given query. it'd be nice to provide a query batcher that lets you build a site with more than 1000 entries.
The text was updated successfully, but these errors were encountered: