Package version:

Interface SqlRuleFilter

Represents all possible fields on SqlRuleFilter

interface SqlRuleFilter {
    sqlExpression: string;
    sqlParameters?: {
        [key: string]: string | number | boolean;
    };
}

Properties

sqlExpression: string

SQL expression to use in the rule filter. It is evaluated against the messages' user-defined properties and system properties. All system properties will be prefixed with sys. in the condition expression. Defaults to creating a true filter if none specified

sqlParameters?: {
    [key: string]: string | number | boolean;
}

SQL parameters to the SQL expression in the rule filter.

Type declaration

  • [key: string]: string | number | boolean

Generated using TypeDoc