| 1234567891011121314151617181920212223242526 | [[query-dsl-boosting-query]]=== Boosting QueryThe `boosting` query can be used to effectively demote results thatmatch a given query. Unlike the "NOT" clause in bool query, this stillselects documents that contain undesirable terms, but reduces theiroverall score.[source,js]--------------------------------------------------{    "boosting" : {        "positive" : {            "term" : {                "field1" : "value1"            }        },        "negative" : {            "term" : {                "field2" : "value2"            }        },        "negative_boost" : 0.2    }}--------------------------------------------------
 |