Yusuf
Yusuf
For those asking in 2021, you can check my lightweight library which supports **is null**, **is empty**, **and/or**, **bools**, **enums**, **dates**, **searching over relations** (joins), and much more here https://github.com/turkraft/spring-filter
I came up with a much simpler solution which also prevents joining the same table multiple times in my alternative library. https://github.com/turkraft/spring-filter/blob/caac7c5e3819600fb5aded37e0e85a7b8de5dca7/src/main/java/com/turkraft/springfilter/generator/ExpressionGeneratorUtils.java#L40-L95 ```java public static Path getDatabasePath( Root table, Map
> for future visitors here are the docs about **Scoped slots** that explain the `$component` variable mentioned by @ben182 > [laravel.com/docs/8.x/blade#scoped-slots](https://laravel.com/docs/8.x/blade#scoped-slots) > > I guess this can be closed? This...
@pulsejet the PR is here https://github.com/pulsejet/nextcloud-oidc-login/pull/99, would be really great if you can review it and merge it :)
Hi :) I would like to better integrate these parameters to Spring, instead of adding additional syntax. I will see what I can do.
I need to do some research, that's completely new to me. I also don't know for now if it's in the scope of the project. :) You can always open...
Hi @VS-88 Do you get the same error when using the following? ```java public @responsebody ResponseEntity search(FilterSpecification specification); ```
Hello @VS-88, I think that this should do the job: ```java @RepositoryRestResource public interface MyRepo extends JpaRepository, JpaSpecificationExecutor { @ResponseBody default ResponseEntity search(@Filter Specification specification) { return ResponseEntity.ok(findAll(specification)); } @ResponseBody...
Hey, Just to give some news, I am going to change a few things as stated in #135 before going on with this issue, since `@ElementCollection` is basically a `@OneToMany`.
I also wanted to know what kind of search you want to do on those collections. For example * `collection in ('x', 'y', 'z')` : is one of `x`, `y`,...