-
Type:
Improvement
-
Resolution: Fixed
-
Priority:
Minor - P4
-
Affects Version/s: None
-
Component/s: None
-
Query Execution
-
Fully Compatible
-
QE 2025-03-03, QE 2025-03-17
-
200
-
None
-
None
-
None
-
None
-
None
-
None
-
None
'undefined' value is not a part of JSON specification, but it is still useful to see which values and properties are undefined. The output should be valid JSON, therefore we should consider the following serialization for logs:
toJsonForLog(undefined) --> {"$undefined": true} // currently prints undefined toJsonForLog([undefined]) --> [{"$undefined": true}] // currently prints [null] toJsonForLog({hello: undefined}) --> {"hello":{"$undefined": true}} // currently prints {}