
admin.appserverGetType( config as element(configuration), appserver-id as (Number|String) ) as String
This function returns the type of appserver with the specified ID. It will be one of "http", "xdbc", "odbc", or "webDAV".
http://marklogic.com/xdmp/privileges/admin/app-server
http://marklogic.com/xdmp/privileges/admin/app-server/{id}
const admin = require('/MarkLogic/admin.xqy');
const config = admin.getConfiguration()
const groupid = admin.groupGetId(config, "Default")
admin.appserverGetType(config,
admin.appserverGetId(config, groupid, "myAppServer"))
//returns "http", "xdbc", "odbc", or "webDAV"