| Query |
Example |
Notes |
| single term |
document |
Searches for documents that contain "document"
term in the default field. |
| phrase |
"important document" |
Searches for documents that contain the phrase "important
document" in the default fiels. |
| searching fields |
title:document |
Searches for documents that contain "document"
term in the "title" field. |
| OR operator |
important document |
"OR" is the default operator. |
| |
important OR document |
The default field must contain either "important"
or "document". |
| AND operator |
important AND document |
The default field must contain both word. |
| + operator |
important +document |
The default field must contain "document" and may
contain "important". |
| NOT/- operator |
-important document |
The default field must contain "document" but not
"important". |