
dls:document-version-query( $version as xs:unsignedLong ) as cts:properties-fragment-query
This function returns a query that matches the specified version of the managed documents.
| Parameters | |
|---|---|
| version | The version of the managed documents. |
dls-user role is required to run
this function, or the privilege:http://marklogic.com/xdmp/privileges/dls-user
xquery version "1.0-ml";
import module namespace dls = "http://marklogic.com/xdmp/dls"
at "/MarkLogic/dls.xqy";
cts:search(fn:doc(), dls:document-version-query(3))
(: Returns Version 3 of all of the managed documents in the database. :)
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.