$isEmpty
The$isEmpty operator checks if a value is empty (null, empty string, or empty collection).
Input
- A single value of any type
Output
trueif the input value is empty (null, empty string, or empty collection),falseotherwise
Examples
Check Empty String
true
Check Empty Array
true
Check Empty Object
true
Check Non-Empty Value
false
From Field
true if the text_field is empty, otherwise false
