'Postman receive all data from Strapi
I want to ask you kindly for help. I would like to receive all the Strapi data while I am doing a GET request.
Currently in Postman I see that in total there are 4316 objects. I want to receive all of them via a GET request. How can i change this in order not to receive only 25 objects?
Should I change the url somehow?
I tried with something like this, but without luck :(
http://localhost:1337/api/webs?pagination[start][$eq]=0&[limit][$eq]=10000
Solution 1:[1]
As per their doc [1] the default and maximum values for pagination[limit] can be configured in the ./config/api.js file with the api.rest.defaultLimit and api.rest.maxLimit keys.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | gelato grande |