Skip to main content

Logical: Date Condition

Compare two Date or DateTime values using a chronological operator and emit a boolean.

Example
Operator: Gt (after)
A: Date(2024-06-15)
B: Date(2024-06-01)
Output: true

Parameters

OperatorREQUIRED

Chronological comparison applied between A (left) and B (right): - Eq — A is the same instant as B. - Gt — A is strictly after B. - Ge — A is the same as or after B. - Lt — A is strictly before B. - Le — A is the same as or before B.

Input

Date AREQUIRED
Left-hand Date or DateTime value.
Date BREQUIRED
Right-hand Date or DateTime value.

Output

OK

true if the comparison holds, false otherwise.