System Information
- Strapi Version:
- Operating System:
- Database:
- Node Version:
- NPM Version:
- Yarn Version:
First, _limit=-1 does not work in v4 everyone keeps telling me it does, but it does not.
I have googled, read the docs, and read through the git hub.
I am still struggling to get the most basic response, all items in a table.
PLEASE HELP lol
here is my current query:
const res = await fetch(`${API_URL}/api/events?sort=date&pagination[pageSize]=200&populate=*`);
despite specifying 200 this only returns 100 results. I would like to return all results. Not 100, not 200, all of the results.
I still don’t understand why returning all responses isn’t the default behaivore.