De $ne wordt niet ondersteund expressie-operator,
U kunt $type . gebruiken om te controleren is string zoals deze { "email": { $type: "string" } } , omdat het null-type "null" is.
EX. om gedeeltelijke index te gebruiken voor $type filter dat je moet gebruiken onder filter:
{ "email": { "$eq": "example@sqldat.com", "$type": "string" } }
// or
{ $and: [{ "email": "example@sqldat.com" }, { "email": { $type: "string" } }] }