$ne
stöds inte uttrycksoperator,
Du kan använda $type
att kontrollera är string
så här { "email": { $type: "string" } }
, eftersom nolltypen är "null".
EX. för att använda partiellt index för $type
filter du måste använda nedanstående filter:
{ "email": { "$eq": "[email protected]", "$type": "string" } }
// or
{ $and: [{ "email": "[email protected]" }, { "email": { $type: "string" } }] }