Igor Dianov

Results 55 comments of Igor Dianov

@molexx I have created an example that wires, builds and merges two schemas from different Sql data sources into a single GraphQL schema using graphql-jpa-query-autoconfigure mechanism. The mutations can now...

@tomuszom Thank you bug report! I will take a look at it

@MurrayFurtado It should be possible to implement JPA aggregate expressions to fetch aggregated data via GraphQL queries, i.e. `count`, `sum`, `avg`, `max` and `min` (https://docs.oracle.com/html/E13946_04/ejb3_langref.html#ejb3_langref_aggregates) For example, I can add...

@uded I understand what you mean. I can fix it if you could provide a sample Jpa Java entity class to create a test case. Thank you!

@mtshane It should be possible to do something like that.

@MurrayFurtado Do you have any suggestions how this should work? For example, this could be expressed with something like this: ``` {NOT: {LIKE: 'USD%'}} ``` or ``` {NOT_LIKE: 'USD%'} ```

@ludovicmotte 1. It would possible to augment where arguments construction filter in schema builder to ignore where arguments with various @GraphQLIgnore annotation attributes. Does it is sound plausible to you?...

@MENGKONGSEAN Can you describe your use case in more detail?

@phuongphally Yes, it is on supported. You are welcome to make a PR to solve this issues for yourself and other users.

@molexx Good points. The rationale for applying defaultMaxResults to override user specified page limit size is to provide a circuit breaker in case the user want to retrieve unreasonable number...