alert:rule-set-description

alert:rule-set-description(
   $rule as element(alert:rule),
   $description as xs:string
) as element(alert:rule)*

Summary

This function returns the rule with the description of the rule updated.

Parameters
$rule The representation of a rule.
description The description value to set for the given rule.

Example

  xquery version "1.0-ml";
  import module namespace alert = "http://marklogic.com/xdmp/alert" 
		  at "/MarkLogic/alert.xqy";

  alert:rule-set-description($rule, "Email when new article about DNA")
  => Returns the XML representation of the rule with the description 
     updated to "Email when new article about DNA"
  
Powered by MarkLogic Server | Terms of Use | Privacy Policy