How to get more than 25 records returned from my couch db using Fauxton/Selector query only (not CURL)

535 Views Asked by At

When ever i try to fetch records from my couch db GetAsync method (not Find Async) i usually get only 25 records.

I am working with Angular 12, API.NET web api core and couch db. So i am writing my code is C# and looking for a specific selector in case i need to get more than 25 records from the couch DB.

currently my selector looks something like this no other query is attached to it as i need the entire door data not just top 25.


1

There are 1 best solutions below

1
On

Per CouchDB documentation:

Refer to the view endpoint documentation for a complete description of the available query parameters and the format of the returned data.

Specifically, the limit parameter. The default limit is 25.