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 following path "$.store.book[?(@.authors[0:].lastName)]" crash due to Accessing address: (nil)
"$.store.book[?(@.authors[0:].lastName)]"
Accessing address: (nil)
Example JSON:
{ "store": { "book": [ { "authors": [ { "firstName": "Nigel", "lastName": "Rees" }, { "firstName": "Evelyn", "lastName": "Waugh" } ], "title": "Sayings of the Century" }, { "authors": [ { "firstName": "Herman", "lastName": "Melville" }, { "firstName": "Somebody", "lastName": "Else" } ], "title": "Moby Dick" } ] } }
The text was updated successfully, but these errors were encountered:
Failing because of:
if !self.selector_filter.is_term_empty() { unimplemented!("range syntax in filter"); }
https://github.com/RedisJSON/jsonpath/blob/ddb3b2db3345b31a4251ad1fbfb0f75732f6e189/src/select/mod.rs#L828
Sorry, something went wrong.
No branches or pull requests
The following path
"$.store.book[?(@.authors[0:].lastName)]"
crash due toAccessing address: (nil)
Example JSON:
The text was updated successfully, but these errors were encountered: