rsql-jpa-specification
rsql-jpa-specification copied to clipboard
Java Library to Translate RSQL into Spring Data JPA Specification and QueryDSL Predicate
close #145
When sorting on a jsonb sub-field, the function `jsonb_extract_path` is used. This function returns a `jsonb` result type. When sorting 'ic' (case insensitive), `lower` function is used. But `lower` function...
I think you are missing some comparison to exclude from conversion here: https://github.com/perplexhub/rsql-jpa-specification/blob/master/rsql-jpa/src/main/java/io/github/perplexhub/rsql/jsonb/JsonbExpressionBuilder.java#L137 As `LIKE` and `IGNORE_CASE` are ignored, `IGNORE_CASE_LIKE` should also be ignored. A test case for with `arguments(allCases,...
Any way to create a custom predicate using QueryDSL instead JPA?
Not sure if this is considered a bug or maybe a documentation update. I can successfully filter on a.b.c=='some value'. where a is a manytoOne from the root to 'a'...
When used spring.main.lazy-initialization=true the rsql-jpa-spring-boot-starter is not working properly because not found entityManager error on EntityManagerDatabase.
Hello, i need a method to convert a sort string into QueryDsl predicate. How can i do that?
Greetings! I am using the rsql-jpa-spring-boot-starter with spring boot 3. So far all my queries work with no issues, but now I am trying to do something as simple as...
Hi, I just found out that for entities with composite keys, the generated query fails. For instance: ```java @Entity @Table(name = "offices") public class Office implements Serializable { @EmbeddedId private...