You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now you cannot. This is a design decision in order to avoid having to use a JSON lib like Jackson (see README).
Internally, we use an Object to represent null: see:
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:
How can I differentiate these two cases in
jsonata-java
?The text was updated successfully, but these errors were encountered: