-
When I evaluate the expression nullField against the document:
{ "nullField": null }
I get null.
-
When I evaluate the expressions nonExistingField against the same document I still get: null.
When I run the same test in the JSONata Exerciser I get:
- null
- ** no match **
How can I differentiate these two cases in jsonata-java ?
When I evaluate the expression
nullFieldagainst the document:{ "nullField": null }I get
null.When I evaluate the expressions
nonExistingFieldagainst the same document I still get:null.When I run the same test in the JSONata Exerciser I get:
How can I differentiate these two cases in
jsonata-java?