
admin.databaseFragmentParent( namespace as String?, localname as String ) as element(db.fragmentParent)
This function constructs a fragment parent specification.
| Parameters | |
|---|---|
| namespace | The namespace URI. Specify an empty string if the element is in no namespace. |
| localname | The local name for the node. |
const admin = require('/MarkLogic/admin.xqy');
const namespace = "my/namespace"
const localname = "someElementName"
admin.databaseFragmentParent(namespace, localname )
//returns the fragments parent specification
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.