I am using liquid template in my LogicApp for data transformation. I need to differentiate if a json node is empty, null.
So in json if i have "Name":""
"Name":null
, then I need to differentiate between them. I observed that all the below 3 conditions(== "" , == empty == blank) return true for both of these cases. So how I explicitly check if it is null or just ""
{% if content.Name == "" %}
{% endif %}
{% if content.Name == empty %}
{% endif %}
{% if content.Name == blank %}
{% endif %}