IMPORTANT: No additional bug fixes or documentation updates
will be released for this version. For the latest information, see the
current release documentation.
Match Phrase Usage
edit
IMPORTANT: This documentation is no longer updated. Refer to Elastic's version policy and the latest documentation.
Match Phrase Usage
editFluent DSL example
editq
.MatchPhrase(c => c
.Field(p => p.Description)
.Analyzer("standard")
.Boost(1.1)
.Query("hello world")
.Slop(2)
.Name("named_query")
)
Object Initializer syntax example
editnew MatchPhraseQuery
{
Field = Field<Project>(p => p.Description),
Analyzer = "standard",
Boost = 1.1,
Name = "named_query",
Query = "hello world",
Slop = 2,
}
Example json output.
{
"match_phrase": {
"description": {
"_name": "named_query",
"boost": 1.1,
"query": "hello world",
"analyzer": "standard",
"slop": 2
}
}
}