Module elasticsearch_dsl::search::queries::full_text [−][src]
Expand description
The full text queries enable you to search analyzed text fields such as the body of an email. The query string is processed using the same analyzer that was applied to the field during indexing.
Structs
A match_bool_prefix query analyzes its input and constructs a
bool query from the terms. Each term except the last is used in a
term query. The last term is used in a
prefix query.
Returns documents that contain the words of a provided text, in the same order as provided. The last term of the provided text is treated as a prefix, matching any words that begin with that term.
The match_phrase query analyzes the text and creates a phrase query out
of the analyzed text.
Returns documents that match a provided text, number, date or boolean value. The provided text is analyzed before matching.
Returns documents that match a provided text, number, date or boolean value. The provided text is analyzed before matching.