Loading TOC...

cts.boostQueryMatchingQuery

cts.boostQueryMatchingQuery(
   query as cts.boostQuery
) as cts.query

Summary

Returns the matching (first parameter) query used to construct the specified boost query.

Parameters
query A query.

Example

const query = cts.boostQuery(
                cts.wordQuery("wanted"),
                cts.wordQuery("unwanted"));
cts.boostQueryMatchingQuery(query);

  => cts.wordQuery("wanted", ["lang=en"], 1)

Stack Overflow iconStack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.