General question regarding .find Methods

Hey Strapi-Community,
I stumbled over a question regarding the .find-Methods.

I’ve go some models that are heavy used (10.000+) and after some time I hit the 100-entries-limitation. So i fiddled my way around that by using limit: -1.

Now I’ve got a requirement for a controller that returns 11 results of that model.
I guess I would call .find in this controller with _limit: 11.

But will this .find-Method return me now 11 results of the default 100 or will the .find-Method correctly search through all (10.000+) entries and return me the first 11 results?

Thanks,
Olaf

Hi @lolafkok,

As I know it will return you the first 11 results of the all 10.000+ entries :wink: