Glyn Normington
Glyn Normington
@cburgmer's JSONPath comparison project is currently discussing some [issues](https://github.com/cburgmer/json-path-comparison/issues?q=is%3Aissue+is%3Aopen+label%3A%22Proposal+A%22) relating to a proposed implementation of JSONPath known as "Proposal A". May I encourage you to get involved if you are...
@cburgmer's JSONPath comparison project is currently discussing some [issues](https://github.com/cburgmer/json-path-comparison/issues?q=is%3Aissue+is%3Aopen+label%3A%22Proposal+A%22) relating to a proposed implementation of JSONPath known as "Proposal A". May I encourage you to get involved if you are...
**Is your feature request related to a problem? Please describe.** `make run` fails on macOS with a GKE cluster: ``` make run RUST_LOG="rudr=debug,kube=info" RUST_BACKTRACE=short cargo run Finished dev [unoptimized +...
@cburgmer's JSONPath comparison project is currently discussing some [issues](https://github.com/cburgmer/json-path-comparison/issues?q=is%3Aissue+is%3Aopen+label%3A%22Proposal+A%22) relating to a proposed implementation of JSONPath known as "Proposal A". May I encourage you to get involved if you are...
[Proposal A](https://github.com/cburgmer/json-path-comparison/tree/master/proposals/Proposal_A) lists multiplication and division as "to dos". I'm nervous that this is the start of scripting and once these operations are introduced, the proposal may be drawn into...
Looking at https://cburgmer.github.io/json-path-comparison/results/filter_expression_with_equals_number_with_leading_zeros.html makes me wonder if the rational for not supporting this in Proposal A was to allow for octal notation to be added in future. It would be...
It seems that logical not (`!`) in filters in Proposal A doesn't work as expected. For example: ``` $ echo '[0]' | ./run.sh '$[?(true)]' [0] $ echo '[0]' | ./run.sh...
Many of the implementations allow eliding the dot where a dot child appears at the start of the path. See https://cburgmer.github.io/json-path-comparison/results/dot_notation_without_root.html. This seems like reasonable syntactic sugar and I'd like...
Proposal A supports a mixture of wildcards and numbers such as `$[*,1]` whereas the [consensus](https://cburgmer.github.io/json-path-comparison/results/union_with_wildcard_and_number.html) is "not supported". What's the rationale for this behaviour of Proposal A? Should Proposal A...
Currently, Proposal A uses the following (PEG.js) syntax for child names that can appear in brackets with single quotes: ``` SingleQuotedString = x:"\\'" xs:SingleQuotedString { return "'" + xs; }...