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
Most implementations seems to have the following issue:
Given the following JSON:
[ { "stack": "", "branch": [ "one/", "two/" ] }, { "branch": ["three/", "four/"]} ]
The following expression yields an incorrect result:
[?stack==''].branch[?starts_with(@, 'one')]
invalid-type
In contrast, the following similar expression returns the expected result:
[].branch[?starts_with(@, 'one')]
[ [ "one/" ], [] ]
Please consider adding a compliance test and fixing the libraries.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Most implementations seems to have the following issue:
Given the following JSON:
The following expression yields an incorrect result:
[?stack==''].branch[?starts_with(@, 'one')]
->invalid-type
In contrast, the following similar expression returns the expected result:
[].branch[?starts_with(@, 'one')]
->[ [ "one/" ], [] ]
Please consider adding a compliance test and fixing the libraries.
The text was updated successfully, but these errors were encountered: