-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
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
Filtering recursive by key? #34
Comments
@kdezz, we are actively developing the "callables" capability for exactly this use case (see #14 for details). For example, using the
The above JSONPath tests the key-value pairs of the "robots" JSON object for keys that end with "_17343" and then extracts the corresponding value. Please note that the |
Am I right in thinking that match() should return True/False to satisfy the |
@grandprixgp The
yields all
yields the second capture group of Please note that the (Edit: Add closing square bracket to second example.) |
Thanks for clarification! |
I've a situation in which I don't know the keys, for example I have a structure that might look something like this:
What would be the best way to filter by the ID of the key? For example, if I wanted to retrieve the
random_robot_id_17343
node.The text was updated successfully, but these errors were encountered: