
xdmp:document-get-properties( $uri as xs:string, $property as xs:QName ) as element()*
Returns the property values for a document's property. Throws XDMP-DOCNOTFOUND if there is no document at the specifed URI.
| Parameters | |
|---|---|
| uri | The document URI. |
| property | The property name. This is the QName of the top-level property element in the specified properties document. |
xdmp:document-get-properties(
"http://example.com/foo.xml",
fn:QName("http://examples.com/","priority"))
=> <priority xmlns="http://examples.com/">5</priority>
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.