OpenSearch/docs/reference/query-dsl/constant-score-query.asciidoc

23 lines
541 B
Plaintext
Raw Normal View History

[[query-dsl-constant-score-query]]
=== Constant Score Query
A query that wraps another query and simply returns a
constant score equal to the query boost for every document in the
filter. Maps to Lucene `ConstantScoreQuery`.
[source,js]
--------------------------------------------------
GET /_search
{
2016-05-10 06:42:17 -04:00
"query": {
"constant_score" : {
"filter" : {
"term" : { "user" : "kimchy"}
},
2016-05-12 06:30:33 -04:00
"boost" : 1.2
2016-05-10 06:42:17 -04:00
}
}
}
--------------------------------------------------
// CONSOLE