For MarkLogic Query-By-Example, I can search for all entries that contains the specific email address like this:
{
"$query":
{
"emailAddress":"[email protected]"
}
}
My question is how can you negate this search, for this specific example, how can I find all the results that does NOT contain emailAddress with value: '[email protected]' ? Is there a not operator for MarkLogic Query By Example JSON format?