$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": "example@sqldat.com", "$type": "string" } }
// or
{ $and: [{ "email": "example@sqldat.com" }, { "email": { $type: "string" } }] }