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
I am faced with the fact that some operations are not currently supported in JsonPath. I have query like this:
$.[?(@.id=='1' && @.name == 'Pasha')]
I see that this project has not been updated for a long time... Do you have any plans to support this project?
The text was updated successfully, but these errors were encountered:
I'm not planning any new development myself right now but I'm fine with releasing new versions if there are contributions to be released.
This feature should be relatively easy to add, so I'd be happy to look at a PR and release a new version when needed.
Sorry, something went wrong.
You would need to introduce new classes
case class And(p1: Predicate, p2: Predicate) extends Predicate // same for or
in JsonPath.scala, then add a parser for that in JsonPathParser.scala, and an implementation/conversion in JsonPathIntegration.scala.
Adding support for Jsonpath with && and || logical operators
9dec7c5
Issue: jrudolph#33
e16cf7f
No branches or pull requests
I am faced with the fact that some operations are not currently supported in JsonPath.
I have query like this:
I see that this project has not been updated for a long time... Do you have any plans to support this project?
The text was updated successfully, but these errors were encountered: