
cts:near-query-queries( $query as cts:near-query ) as cts:query*
Returns the query sequence used to construct the near query.
| Parameters | |
|---|---|
| query | A query. |
cts:near-query-queries($query)
=> ... a sequence of the queries used to
construct this query
let $query :=
cts:near-query((
cts:word-query("to be or"),
cts:word-query("or not to be")))
return cts:near-query-queries($query)
=> (cts:word-query("to be or", (), 1)
cts:word-query("or not to be", (), 1))