I imported the IMDB movies-demo database to my CouchDB instance and am am learning about Mango by utilizing some Cloudant tutorials and references.
I wrote this query to identify documents wherein the actor's name is like "bruce". Now I want to modify this to exclude certain documents from the result set. For example Movie_name <> 'Monster'.
Is this possible and, if so, can anyone help me figure out how to do this?
{"selector":
{"_id":
{"$gt": null},
"Person_name": {"$regex": "(?i)bruce"}
}
}