graphql-jpa-query
graphql-jpa-query copied to clipboard
Generate GraphQL Query Api for your JPA Entity Models
lets consider an example: we have an entity with `@Embedded` field embedded field contains a long value we want to make query where embedded.longVal > 7 but unfortunately there was...
- Add array value predicate handling for floating point numbers in JpaPredicateBuilder - Add test entity FloatingThing - Add test cases to GraphQLExecutorTests
If you have an entity like this: ``` @Table(name = "EWARLNSYHTATT") public class EntityWithAReallyLongNameSoYouHaveToAbbreviateTheTable{ } ``` In the generated schema, the generated type would be "EWARLNSYHTATT" rather than the actual...
Is there a way that I can override or add custom logic to the dataFetcher for a field of my entity? For example, if I have a column "status" that...
Mutation
1. Control of access rights for reading entities. The @GraphQLReadEntityForRole annotation indicates which roles are available for reading. If this annotation is not available to everyone. When creating GraphQLJpaSchemaBuilder, you...
Dear developers: Hello everyone, I've met graphql-jpa-query in recent days. it's awesome. Our project needs mutation resolution. I've read issues about mutation(most information is 2 years ago), and the example...
When performing load test of approx 50 concurrent users,I am getting null values of the fields which were queried.
Hi all, I am writing to you for help to check if my fixed is correct. Seems that in the class/method _GraphQLJpaQueryFactory::getResultStream_ that should return a stream but to do...
I am able to fetch a OneToMany association when hitting a single request but getting "LazyInitializationException - could not initialize proxy - no Session" when performing load test.I tried enabling...
OrderBy in a query throws an exception. EclipseLink appears to have a bug. The getOrderList implementation of CriteriaQuery returns null when uninitialised rather than the specifications empty array. The getOrderList...