user7198676
user7198676

Reputation:

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

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.


Upvotes: -2

Views: 652

Answers (1)

RamblinRose
RamblinRose

Reputation: 4963

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.

Upvotes: 0

Related Questions