We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The case I am describing here is covered by unit tests but I think it's a bug both in implementation and tests.
Test JSON:
{ "A":["string",23.3,3,true,false,null], "B":"value", "C":3.14, "D":{ "C":3.1415, "V":["string2",{"C":3.141592}] } }
Expression: $..C or $..["C"].
$..C
$..["C"]
Actual results:
[3.1415, 3.141592]
Expected results:
[3.14, 3.1415, 3.141592]
Other parsers (https://github.com/PaesslerAG/jsonpath and https://codebeautify.org/jsonpath-tester) work as expected.
The text was updated successfully, but these errors were encountered:
Fix recursive search
d74e213
Closes #6
7b18df3
No branches or pull requests
The case I am describing here is covered by unit tests but I think it's a bug both in implementation and tests.
Test JSON:
Expression:
$..C
or$..["C"]
.Actual results:
Expected results:
Other parsers (https://github.com/PaesslerAG/jsonpath and https://codebeautify.org/jsonpath-tester) work as expected.
The text was updated successfully, but these errors were encountered: