I want to fetch documents with model that contain "3060" and with titles that don't contain "3060".
You can use $regex
operator:
{
"model": { $regex: "3060" },
"title": { $not: { $regex: "3060" } }
}
References:
I want to fetch documents with model that contain "3060" and with titles that don't contain "3060".
You can use $regex
operator:
{
"model": { $regex: "3060" },
"title": { $not: { $regex: "3060" } }
}
References: