I'm using Contentful as my CMS and NextJS on Vercel to display the content.
I'm trying to figure out how to pull unpaginated entries from Contentful. I set the limit
to 100, but I'm still only getting 40 entries.
Can someone explain how to do pagination with Contentful and also pull unpaginated entries? Thanks.
Here's my repo: https://github.com/davinaleong/proj-laugh-and-be-blessed-next
I'm going to post my answer to help others.
The issue was with my query. Only 40 entries matched the query I was sending to Contentful. After correcting the entries on Contentful, I was able to query all 80+ entries.
So... remember to check both your query and your data on Contentful!