Reputation: 16508
I'm new to couchdb and a bit confused. I have a database of movies, and I'd like to query all (or in groups of 50) of the movies with field year
equal to 2015
for example. How could I do this?
Upvotes: 0
Views: 46
Reputation: 1225
You have to
year
as key?key=2015
Use ?skip=
and ?limit=
to paginate the response.
Upvotes: 1