Loading TOC...

admin:database-metadata-field

admin:database-metadata-field(
   $name as xs:string
) as element(configuration)

Summary

This function constructs a metadata field specification.

Parameters
name Name of the field.

Example



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. :)
    

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