I want to get all documents from azure search
and filter out with NOT
operator. For example, I want to get all documents without term wifi.
NOT
operator can't be used on its own, from lucene documentation:
The NOT operator cannot be used with just one term. For example, the following search will return no results:
NOT "jakarta apache"
For that we have to match all documents and then filter out some:
*:* NOT wifi
Question: How can I match all documents in azure search
like *:*
in lucene?
Thanks in advance!