In Mongoose, if a model M has this field:
list: {type:[String]}
How should I find a document in which a specific value x is not an element of 'list'? I am hoping there is a special operator '$ncontains' so that I can do the following:
M.findOne({list:{$ncontains:x}}...