rsql-jpa-specification
rsql-jpa-specification copied to clipboard
Java Library to Translate RSQL into Spring Data JPA Specification and QueryDSL Predicate
I have 4 objects which associated with ManyToOne like shared below. **Exception thrown for this query.** query -> eventDeifiniton.eventA.eventB.eventC.name==test. Exception -> java.lang.NullPointerException: Cannot invoke \"com.querydsl.core.types.Path.getType()\" because \"path\" is null **Exception...
I didn't find any follow-up of https://github.com/perplexhub/rsql-jpa-specification/pull/39. How should one handle this issue? I don't think that join hints are way to go, as whether to use left or right...
When using the =ic= or something with ignore case it won't return values with an accent Example: searching for value **Zu klären** with **=ic=** won't return anything but if I...
It would be nice to have visitor that would construct `java.util.function.Predicate` from RSQL query.
The rsql-parser:2.3.1 contains notable improvement of having unary operators like `=null=` and `=notnull=`. Previously we've been forced to `company.code=notnull=''` because parser didn't allow no argument operator. With v2.3.1 it becomes...
…ing list is being copied.
Hello, I'm currently using `rsql-jpa-specifications` in a Spring Boot project and facing a challenge with querying entities based on conditions that span multiple child entities. I would appreciate any guidance...
Hello, I have a structure where a user has multiples roles, but in our database, the relationship between user and role is in a user_role_rel table because this table has...
I am getting the following error when I add a sort query: `java.lang.NoClassDefFoundError: Could not initialize class io.github.perplexhub.rsql.jsonb.JsonbSupport`. If I remove the sort query, the filter works. Environment: ``` Spring...
I am using spring boot 3.1.12 and rsql-jpa-specification 6.0.4 A query in entity EXAMPLE, with party.contactMedium.emailAddress="xxx" is working. But if i upgrade to spring boot 3.2.+ Same QUERY results in...