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?
Using node-couchdb to query a database
71 views Asked by erikvold At
1
You have to
year
as key?key=2015
Use
?skip=
and?limit=
to paginate the response.