-
Notifications
You must be signed in to change notification settings - Fork 98
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
Recursive traversal missing #78
Comments
Can you give a use case? or example of what you're trying to achieve? |
@kvetoslavnovak I believe the |
E.g. I am trying to get all TYPE_OF_DATE tags/nodes which are all over the different places in my XMLs. Using JSONPath library for the time being. // using JSONPath to get all TYPE_OF_DATE because JMESPath cannot do recursive traversal (to get non-rooted expressions)
let TYPE_OF_DATE = JSONPath({
path: "$..TYPE_OF_DATE",
json: JSONfile,
}); Description of |
Thank you very much for this tip. |
@springcomp thank you for the |
@kvetoslavnovak I‘ve setup #148 to track this feature. |
@springcomp thank you very much |
@kvetoslavnovak We want to propose this feature to JMESPath and will include this in the next iteration for JMESPath Community. |
First of all thank you very much for this great library which helped us with our project a lot!!!
Only feature that we really miss is that JMESPath doesn't have recursive traversal. Like the standard feature
//
in XPath or..
in JsonPath.Thank you very much for your response
The text was updated successfully, but these errors were encountered: