admin:mimetypes-delete( $config as element(configuration), $mimetypes as element(mt:mimetype)* ) as element(configuration)
This function deletes mimetypes from the configuration. This function always requires a server restart to take effect.
Parameters | |
---|---|
config | A configuration specification, typically as returned from one of the Admin module functions. |
mimetypes |
A mimetype specification, typically the result of an
admin:mimetype call.
|
http://marklogic.com/xdmp/privileges/admin/mimetypes
xquery version "1.0-ml"; import module namespace admin = "http://marklogic.com/xdmp/admin" at "/MarkLogic/admin.xqy"; let $config := admin:get-configuration() let $mimetype := admin:mimetype("application/foo","foo bar","binary") return admin:mimetypes-delete($config, $mimetype) (: 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: Get the most useful answers to questions from the MarkLogic community, or ask your own question.