
admin:group-exists( $config as element(configuration), $group-name as xs:string ) as xs:boolean
This function determines whether or not the specified Group
exists. Returns true if the Group exists, otherwise
false is returned.
| Parameters | |
|---|---|
| config | A configuration specification, typically as returned from one of the Admin module functions. |
| group-name | The name of the group to check. |
xquery version "1.0-ml";
import module namespace admin = "http://marklogic.com/xdmp/admin"
at "/MarkLogic/admin.xqy";
let $config := admin:get-configuration()
return admin:group-exists($config, "Default")
(: Returns true, if the Default group exists. :)
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.