graphql-filter-java
graphql-filter-java copied to clipboard
This project is developed to help developers add filtering support to their graphql-java services
**1. Issue Link:** https://github.com/intuit/graphql-filter-java/issues/23 **2. Brief explanation of a change:** Instead of assuming all values of `eq` to use `criteriaBuilder.equal`, if the value is `null`, we want to use `criteriaBuilder.isNull`...
Hello, I am trying to write a GraphQL filter to filter for nulls. ``` { events( filter: { bookingId: { eq: null } } ) { id booking { id...
When trying to use this recent feature with newer versions of graphql java there was an error as it has changed a lot since version 13.x, how solve this ?
Allow to use R2DB Repositories. https://github.com/spring-projects/spring-data-r2dbc https://github.com/r2dbc
If `DateTime` scalar from `graphql-java-extended-scalars` is used which maps to the `OffsetDateTime` Java type the following exception is thrown. ``` org.springframework.dao.InvalidDataAccessApiUsageException: Parameter value [Thu Dec 03 01:00:00 CET 2020] did...
The current implementation for String `starts` and `ends` operators is a switch fall through to `contains`. Proper SQL implementations with `LIKE %` and `LIKE %` should be provided instead.
We need to setup release task using circleci. Currently the project is using circleci for its build and test steps, we need to add the step of releasing a stable...
Has anybody successed implementing nested filters?, like `filter: { or: [ { user: { firstName: { contains : "Saurabh" } } }, { user: { lastName: { contains : "Saurabh"...
**1. Issue Link:** #26 **2. Brief explanation of a change:** Added support to create Mongo criteria instance to be able to use graphQL generic filters with MongoDB. **3. Will it...
Add Mongo criteria support to be able to use the generic graphQL filter library with MongoDB.