I am getting data via a webhook and want to check the field values (if-node). It looks like I am not able to check a {{ null }} value. The record is passing my entry check nevertheless
accountNumber in your payload is a JSON null, which isn’t always handled by the Is not empty operator the way you’d expect. Instead of comparing against {{ null }}, use an expression such as:
{{ $json.accountNumber !== null }}
or, if you also want to catch undefined:
{{ $json.accountNumber != null }}
If your goal is simply to verify that the field contains a real value, you can also use:
{{ !!$json.accountNumber }}
That will evaluate to false for null, undefined, and empty strings.