Add is_not_empty

Please can we have in Routing conditions, functions, add: is_not_empty as an option.

thank you

hey @Dominic, thanks for the suggestion! At the moment, we don’t plan to add is_not_empty . You can already achieve the same result by checking the existing function against false , for example:

is_empty(expression) = false

This keeps the function list smaller while providing the same functionality. :raising_hands:

Thank you will try that in future.