Greater than?
Comparison
Pure
Generic
Greater than?
A
0
Result
B
0
Description
Pure function returning true if a is greater than b.
When to use
Use Greater than? when you need a strict inequality check on two numbers — for example, confirming that a count exceeds zero or that a score surpasses a threshold. Both integer and decimal inputs are accepted. Wire the result into a Branch condition to route execution based on the comparison. For a non-strict check, use Greater than or equal? instead.
Pins
Input pins
| Pin | Type | Default | Notes |
|---|---|---|---|
| A | generic(integer, decimal) | 0 | The value to test. |
| B | generic(integer, decimal) | 0 | The threshold to compare against. |
Output pins
| Pin | Type | Notes |
|---|---|---|
| Result | boolean | True if a is strictly greater than b; false otherwise. |
Example
Send a “high score” email only when the score exceeds 100. Wire the score (integer or
decimal) into the A input of Greater than? with B set to 100, then connect the Result
output to the Condition input of Branch. The True execution output fires only when the
score is strictly above 100.