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
According to http://goessner.net/articles/JsonPath/ , bracket notation for a given path uses single quote, not double quote. So in your examples:
Instead of
$.baz[\"π\"]
isn't a valid key. It should be really be
$.baz['π']
Actually, there's no specific need to force the long form just because there's a non-ASCII character in the key.
I'm pretty sure that
$.baz.π
is a perfectly legit key.
The text was updated successfully, but these errors were encountered:
use @evxn/jsonpath per dchester/jsonpath#57 (comment)
0227516
Fixes: IBM-Cloud#18
unit test and fix for flatten
96adad5
- expand still broken Fixes: IBM-Cloud#18
srl295
Successfully merging a pull request may close this issue.
According to http://goessner.net/articles/JsonPath/ , bracket notation for a given path uses single quote, not double quote. So in your examples:
Instead of
isn't a valid key. It should be really be
Actually, there's no specific need to force the long form just because there's a non-ASCII character
in the key.
I'm pretty sure that
is a perfectly legit key.
The text was updated successfully, but these errors were encountered: