AND
Boolean AND of two values.
Returns true only when both boolean inputs are true. Use it to require two conditions at once before a branch continues.
Inputs
- Arequired — Boolean. Uses the first boolean operand in the AND evaluation.
- Brequired — Boolean. Uses the second boolean operand in the AND evaluation.
Outputs
- Result — Boolean. Represents true only when both operands are true.
Example use cases
Require two conditions
Feed the results of two DSL Condition nodes in, and only continue when both pass, such as a ticket being both high priority and unassigned.