
admin.appserverGetUsingNamespaces( config as element(configuration), appserver-id as (Number|String) ) as Sequence
This function returns the value of any "using" namespaces predefined for the specified App Server. If none are defined, returns the empty sequence.
http://marklogic.com/xdmp/privileges/admin/app-server
http://marklogic.com/xdmp/privileges/admin/app-server/{id}
const admin = require('/MarkLogic/admin.xqy');
var config = admin.getConfiguration()
var appserverId =
admin.appserverGetId(config,
admin.groupGetId(config, "Default"), "myAppServer")
admin.appserverGetUsingNamespaces(config, appserverId)
//returns the namespace(s), if any, for the specified App Server