jsonpath-rust icon indicating copy to clipboard operation
jsonpath-rust copied to clipboard

Support for json-path in Rust

Results 20 jsonpath-rust issues
Sort by recently updated
recently updated
newest added

Provide an update by path or return a mutable borrow.

enhancement
help wanted

Since the calculation happens in memory, there is a pivotal drawback that ensues with the processing of the big files. But probably before all, the good idea is to attempt...

help wanted
good first issue

Hey. I'm using this library at work and I have noticed some slowness when using regex, looks like creating a Regex is somehow slow. I have tested the theory using...

Hi @besok I started using your crate and got into performance issues, now I did some looks into it and tried to simplify the interface a bit. Removed the JsonPathFinder...

JsonPathFinder seems to be redundant. Probably, better to revise the API a remove it

It's helpful for debugging, when I try to create a `JsonPathFinder` and it fails I cannot easily debug the error.

Placeholder to myself or somebody to find some time to refactor the module in the following points - replace all `expect` with `ok_or(..)` - refactor grammar (it feels like we...

Hello 👋 I wanted to ask if it's possible to do something following with this crate. I want to be able to run multiple queries on some JSON to eventually...

given json: ```json [ {"verb": "TEST","a":[1,2,3]}, {"verb": "TEST","a":[1,2,3]}, {"verb": "TEST"}, {"verb": "RUN"} ] ``` given jpath: ``` $.[?(@.verb == 'TEST')].a.length() ``` Result: `[2]` Expected result: `[3,3]`