I am trying to select all different from "overview" in a mongodb collection. I use the query below but it does not work...
hist = db.find({'type':{$ne:'overview'}})
If I try without the $ne it works...
Any ideas on what is wrong?
Thanks!
Update
Just fixed... had to quote the "$ne"
:. I've never used mongodb, but googling the syntax for$neshowed me examples with that syntax.