How to create a query CouchDB to retrieve all documents where the size of elements is Greater than X.
This query return all documents where movies.size = 3
{
"selector": {
"movies": { "$size": 3}
}
}
I need to find where movies.size > 3
I'm using CouchDB 2.1.1