
xdmp.documentAddProperties( uri as String, props as Node[] ) as null
Adds a sequence of properties to the properties of a document.
| Parameters | |
|---|---|
| uri | The URI of the document. |
| props | The properties to add. |
declareUpdate();
var props = [fn.head(xdmp.unquote('<priority>1</priority>')).root,
fn.head(xdmp.unquote('<status>unedited</status>')).root];
xdmp.documentAddProperties(
"/a.xml", props);
=> ()
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.