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
Given input json
{ "objects": { "default": { "key": "value" }, "O1": { "key": "value" }, "O2": { "key": "value" } } }
jsonpath: $.objects.*~
$.objects.*~
result is [], where it should be expected (result in https://jsonpath.com/):
[]
[ "default", "O1", "O2" ]
Open jsonpath tester and use the following values: JSON:
JSONPath: $.objects.*~
and observe that result is []
The expected result is from https://jsonpath.com/:
No response
use https://jsonpath.com/
Windows
DevToys (app with GUI)
Version 2.0-preview.5
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Current behavior
Given
input json
jsonpath:
$.objects.*~
result is
[]
, where it should beexpected (result in https://jsonpath.com/):
How to reproduce it (as minimally and precisely as possible)
Open jsonpath tester and use the following values:
JSON:
JSONPath:
$.objects.*~
and observe that result is
[]
Expected behavior
The expected result is from https://jsonpath.com/:
Screenshots
No response
Workaround
use https://jsonpath.com/
Affected platforms
Windows
Affected DevToys kind
DevToys (app with GUI)
DevToys Version
Version 2.0-preview.5
Relevant Assets/Logs
No response
The text was updated successfully, but these errors were encountered: