$ne není podporován výrazový operátor,
Můžete použít $type ke kontrole je string takto { "email": { $type: "string" } } , protože typ null je "null".
EX. pro použití částečného indexu pro $type filtr, který musíte použít níže uvedený filtr:
{ "email": { "$eq": "example@sqldat.com", "$type": "string" } }
// or
{ $and: [{ "email": "example@sqldat.com" }, { "email": { $type: "string" } }] }