xdmp.documentAddProperties

xdmp.documentAddProperties(
   uri as String,
   props as Node[]
) as null

Summary

Adds a sequence of properties to the properties of a document.

Parameters
uri The URI of the document.
props The properties to add.

Example

declareUpdate();
var props = [fn.head(xdmp.unquote('<priority>1</priority>')).root,
             fn.head(xdmp.unquote('<status>unedited</status>')).root];
xdmp.documentAddProperties(
       "/a.xml", props);
=> ()
Powered by MarkLogic Server | Terms of Use | Privacy Policy