You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+19-1Lines changed: 19 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ GraphQL Query Api for JPA Entity Models [ runtime for fulfilling those queries with your existing data. GraphQL provides a complete and understandable description of the data in your API, gives clients the power to ask for exactly what they need and nothing more, makes it easier to evolve APIs over time, and enables powerful developer tools.
11
+
GraphQL is a query language for Web APIs implemented by GraphQL Java [graphql-java](https://github.com/graphql-java) runtime for fulfilling those queries with your existing data. GraphQL provides a complete and understandable description of the data in your API, gives clients the power to ask for exactly what they need and nothing more, makes it easier to evolve APIs over time, and enables powerful developer tools.
12
12
13
13
Your applications can now use GraphQL queries that smoothly follow references between JPA entities with flexible type safe criteria expressions and user-friendly SQL query syntax semantics i.e. query by page, where criteria expressions, select, order by etc.
14
14
@@ -18,6 +18,24 @@ JPA 2.1 (Java Persistence Annotation) is Java's standard solution to bridge the
18
18
19
19
GraphQL JPA Query creates a uniform query API for your applications without being limited by a single data source. You can use it with multiple JPA compliant databases by instrumenting a separate EntityManager for each DataSource and expose a single GraphQL Query Apis for your Web application domain using Spring Boot Auto Configuration magic.
20
20
21
+
Features
22
+
----------------------
23
+
* Code first generation of GraphQL schema from JPA entities
24
+
* Customize GraphQL schema using annotations on JPA entities
25
+
* Execute GraphQL queries with dynamic SQL criteria expressions via JPA Criteria Apis
26
+
* Paginate GraphQL query results
27
+
* Support GraphQL Relay Connection specification
28
+
* Optimized JPA Query performance with single fetch queries
29
+
* Merging two or more GraphQL schemas from different JPA entity models
30
+
* Support for GraphQL schema auto-configuration, GraphQL Web Rest Controller via Spring Boot Starters
0 commit comments