Loading TOC...

dls.documentSetProperties

dls.documentSetProperties(
   uri as String,
   properties as Node[]
) as null

Summary

This function sets the properties of a document to the given sequence of elements. With the exception of the Library Services properties, any properties that already exist on the document are replaced. To preserve existing document properties, use dls.documentAddProperties . Each element QName is the property name and the element value is the property value.

Note that properties are not maintained in version history unless changes are also made to the content of the document.

Parameters
uri The URI of the document.
properties The properties to be set for the document.

Required Privileges

The dls-user role is required to run this function, or the privilege:
http://marklogic.com/xdmp/privileges/dls-user

Modifying properties requires update permissions on a document.

Usage Notes

You cannot set any property nodes in the DLS namespace.

Example

// The 'priority' and 'status' properties are set to the 'baz.xml' document.

  const dls = require('/MarkLogic/dls');
  declareUpdate();
  const properties = [
    new NodeBuilder().addElement('priority', '1').toNode(),
    new NodeBuilder().addElement('status', 'unedited').toNode()];
  dls.documentAddProperties('/foo/bar/baz.xml', properties);
   

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