
cts.boostQueryBoostingQuery( query as cts.boostQuery ) as cts.query
Returns the boosting (second parameter) query used to construct the specified boost query.
| Parameters | |
|---|---|
| query | A query. | 
const query = cts.boostQuery(
                cts.wordQuery("wanted"),
                cts.wordQuery("unwanted"));
cts.boostQueryBoostingQuery(query);
  => cts.wordQuery("unwanted", ["lang=en"], 1)