Comparison Operators
==, !=, >, <, >=, <=
is, is not, gt, lt, gte, lte
Boolean Operators
&&, ||, !
AND, OR, and, or
Data Types
Numbers: 42, 3.14
Strings: "hello", 'world'
Booleans: true, false
Null: null
Variable Access
$variableName
$object.property
$nested.deep.value
Custom Conditions
$value custom:conditionName $expected
// Add custom condition
quis.addCustomCondition('contains',
(value, expected) =>
String(value).includes(String(expected))
);