alert:rule-get-options( $rule as element(alert:rule) ) as element(alert:options)
This function returns the options of a given rule.
Parameters | |
---|---|
$rule | The representation of a rule. |
xquery version "1.0-ml"; import module namespace alert = "http://marklogic.com/xdmp/alert" at "/MarkLogic/alert.xqy"; alert:rule-get-options($rule) => <alert:options> <alert:email-address>me@somedomain.com</alert:email-address> </alert:options>