Loading TOC...

cts:and-query-queries

cts:and-query-queries(
   $query as cts:and-query
) as cts:query*

Summary

Returns a sequence of the queries that were used to construct the specified query.

Parameters
query A query.

Example

  cts:and-query-queries($query)
  => ... a sequence of the queries used to
            construct this query

Example

let $query :=
  cts:and-query((
    cts:word-query("to be or"),
    cts:word-query("or not to be")))
return cts:and-query-queries($query)
  => (cts:word-query("to be or", (), 1)
         cts:word-query("or not to be", (), 1))

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