cts.andNotQueryNegativeQuery

cts.andNotQueryNegativeQuery(
   query as cts.andNotQuery
) as cts.query

Summary

Returns the negative (second parameter) query used to construct the specified query.

Parameters
query A query.

Example

const query = cts.andNotQuery(
                 cts.wordQuery("wanted"),
                 cts.wordQuery("unwanted"));
cts.andNotQueryNegativeQuery(query);

  => cts.wordQuery("unwanted", ["lang=en"], 1)
Powered by MarkLogic Server | Terms of Use | Privacy Policy