| 12345678910111213141516171819202122 | [[query-dsl-constant-score-query]]=== Constant Score QueryA query that wraps another query and simply returns aconstant score equal to the query boost for every document in thefilter. Maps to Lucene `ConstantScoreQuery`.[source,js]--------------------------------------------------GET /_search{    "query": {        "constant_score" : {            "filter" : {                "term" : { "user" : "kimchy"}            },            "boost" : 1.2        }    }}--------------------------------------------------// CONSOLE
 |