graphql-jpa
graphql-jpa copied to clipboard
JPA Implementation of GraphQL (builds on graphql-java)
how to perform mutation operation ...i want to insert record so it is possible and how ? so plz.replay asap
As far as I was able to see, there is no easy way to introduce new scalar types into your handler. Currently, the method seems to be limited to statically...
Hi, I had problems to use the @Embedded Annotation with the previous solution from: #26 This solution does not "flatten" the attributes, instead it keeps the "normal" java model hierarchy....
When I try to use this schema `{ User(id:1){ name } } ` I receive multiple exceptions.
At the moment the whole Schema is generated under the hood by the library without any way of editing it as developer. This way it's not possible to have mutations....
It would be awesome to have auto generated mutations based on JPA entities, just like queries. Is this feature on the roadmap?
Hello, and thanks for your amazing work. I tried graphql-jpa on very simple projects and it worked simply, out-of-the-box, which is really neat ! Something I'm concerned about though, is...
Currently the entire `graphql-jpa` has to be on the package of your domain EJB/JAR. It would be convenient to ship the annotation classes in a separate module.
Currently, Pagination follows the Spring methodology for passing variables around. However, Facebook's Relay project (https://facebook.github.io/relay/) takes a slightly different approach. This approach is detailed in: https://facebook.github.io/relay/graphql/connections.htm. This uses a 'limit'...