Loading TOC...

cts.andNotQueryPositiveQuery

cts.andNotQueryPositiveQuery(
   query as cts.andNotQuery
) as cts.query

Summary

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

Parameters
query A query.

Example

const query = cts.andNotQuery(
                 cts.wordQuery("wanted"),
                 cts.wordQuery("unwanted"));
cts.andNotQueryPositiveQuery(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.