a
(integer, default: 0): The first value to compare.b
(integer, default: 0): The second value to compare.result
(boolean): True if a
is greater than b
, false otherwise.a
and b
input ports.result
output port will emit a boolean value indicating whether a
is greater than b
.a
input port.b
input port.result
output port will emit true
if the user’s age is greater than 18, and false
otherwise.result
value to conditionally execute different parts of your spell based on the user’s age.
a
and b
inputs are of type integer. Connecting other data types may lead to unexpected behavior.a
is strictly greater than b
. If you need to check for greater than or equal to, you should use a combination of the Greater Than and Equal nodes.false
. Make sure to properly handle missing or invalid data earlier in your spell.a
is greater than b
, not the other way around.