I want to filter data from the ledger between two dates , start date and end date.How can this be done using rich queries in couch db
{
"date": {
"$in": [startdate, enddate]
}
}
I know this will give only those data which has dates as start date and end date.How to do this?