NOTE: You are looking at documentation for an older release. For the latest information, see the current release documentation.
Prefix Query Usage
edit
IMPORTANT: This documentation is no longer updated. Refer to Elastic's version policy and the latest documentation.
Prefix Query Usage
editFluent DSL example
editq
.Prefix(c => c
.Name("named_query")
.Boost(1.1)
.Field(p => p.Description)
.Value("proj")
.Rewrite(MultiTermQueryRewrite.TopTerms(10))
)
Object Initializer syntax example
editnew PrefixQuery
{
Name = "named_query",
Boost = 1.1,
Field = "description",
Value = "proj",
Rewrite = MultiTermQueryRewrite.TopTerms(10)
}
Example json output.
{
"prefix": {
"description": {
"_name": "named_query",
"boost": 1.1,
"rewrite": "top_terms_10",
"value": "proj"
}
}
}