-
-
Notifications
You must be signed in to change notification settings - Fork 192
Open
Description
Hello, everyone!
I need some explanations about how the recursion (deep scan, ..
) rule works as an end rule.
Example 1:
Let's have JSON
{"a":{"a":123}}
The JSONPath $..a..
returns
[
{
"a": 123
},
123
]
Example 2:
Let's have JSON
{"a":{"a":null}}
The same JSONPath returns
[
{
"a": null
},
null,
null
]
As you can see, there is an extra null
here.
Are examples demonstrate correct behavior? If yes, how should I interpret the difference between examples?
Thank you!
Metadata
Metadata
Assignees
Labels
No labels