
admin:database-metadata-field( $name as xs:string ) as element(configuration)
This function constructs a metadata field specification.
| Parameters | |
|---|---|
| name | Name of the field. |
xquery version "1.0-ml";
import module namespace admin = "http://marklogic.com/xdmp/admin"
at "/MarkLogic/admin.xqy";
let $config := admin:get-configuration()
let $dbid := xdmp:database("Documents")
let $fieldspec := admin:database-metadata-field("w")
let $new-config := admin:database-add-field($config, $dbid, $fieldspec)
return
$new-config
(: returns the new configuration element -- use admin:save-configuration
to save the changes to the configuration or pass the configuration
to other Admin API functions to make other changes. :)