AndOr
Combines two true/false results into one: both must hold (And), at least one must hold (Or), exactly one (Xor), or flip a single result (Not). Use it to chain several Compare checks into a single rule before an If node acts on it.
Inputs
| Input | Accepts | Required |
|---|---|---|
A | Yes/No | Yes |
B | Yes/No | Optional |
Operation | Text | Optional |
Outputs
| Output | Produces |
|---|---|
Result | Yes/No |
Settings
Typed in on the node or set by the assistant, not wired.
| Setting | Default | Notes |
|---|---|---|
Operation | And | One of And, Or, Xor, Not. Not flips input A and ignores B. |
Example
A deal only counts as "quality revenue" when it is both large and profitable. One
Compare checks Amount >= 250000, another checks the gross margin is above 0.30.
Connect both results to an AndOr set to And; the combined answer drives an If
node that labels the deal "Quality" or "Review".