greater
- can be applied to any number or datetime formatsmaller
- can be applied to any number or datetime formatequal
- can be applied to any number or datetime formatgreater_equal
- can be applied to any number or datetime formatstring_is
- can be applied to any stringstring_begins
- can be applied to any stringstring_ends
- can be applied to any stringstring_includes
- can be applied to any string (not visible on the screenshot below, but is in the app){{ my_list | length }}
will return the length of a list. An empty list will always have a length of 0. So by comparing the length against a number of you choosing, you can either ensure that a list has at least one entry (>0), or that it meets a specific length requirement you have.{{ "" }}
. In this example it is checked that a my_variable
is not an empty string. If my_variable
is an empty string it will return false
.{{ my_variable is defined }}
will return either True or False, which you can compare against by using the "equal" comparison type.