alert.ruleActionQuery

alert.ruleActionQuery(
   actions as String[]
) as cts.query

Summary

This function creates a query to find rules with any of the specified actions. Returns a query be passed to alert.getMyRules or alert.getAllRules.

Parameters
actions A list of action names for the rules to be retrieved.

Example

  const alert = require("/MarkLogic/alert.xqy");

  alert.getAllRules("http://acme.com/alert/message-board", alert.ruleActionQuery(["sms"]))

  =>Returns the rule with action "sms" 
  
Powered by MarkLogic Server | Terms of Use | Privacy Policy