Full Text Search
Term Search
Basic Usage
Searches for the presence of a specific term.
If the provided term can be tokenized further, the tokenization is automatically applied at search time using the same tokenizer as the prefixed field.
Multiple Terms
AND
and OR
can be used to combine and filter multiple terms.
If multiple terms are passed into the same query string, they are OR
ed together by default.
Not Term
-
omits results that contain a specific term. The following query finds documents that match
shoes
or running
but not white
.
Special Characters
The special characters +
, ^
, `
, :
, {
, }
, "
, [
, ]
, (
, )
, <
, >
,~
, !
, \\
, \*
, and SPACE
must
be escaped by a \
inside the query term.
Was this page helpful?