Let's say I have a emails collection with fields and records like:
{
sendAt: "",
to: "[email protected]",
from: "[email protected]"
}
If I need to to query only records with empty sendAt field. Considering this requirement how should I index this collection field? I don't actually need to query any specific dates in sendAt field so full index will be redundant in my view. Is it possible to do with mondogb?