Loading TOC...

xdmp.documentPutMetadata

xdmp.documentPutMetadata(
   uri as String,
   metadata as Object
) as null

Summary

Adds metadata to the document. If any key already exists in the document metadata, the new specified value replaces the old one. Metadata values are strings. Non-string values are converted to strings.

Parameters
uri The document URI.
metadata Metadata in the key value pairs to set on the document.

Example

declareUpdate();
xdmp.documentPutMetadata(uri, {“a”,1})

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