Skip to content

Commit 8c1fedd

Browse files
authored
Update README.md
1 parent f0410e2 commit 8c1fedd

File tree

1 file changed

+3
-43
lines changed

1 file changed

+3
-43
lines changed

README.md

Lines changed: 3 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ GraphQL Query Api for JPA Entity Models
33

44
[![CI](https://github.com/introproventures/graphql-jpa-query/actions/workflows/build.yml/badge.svg)](https://github.com/introproventures/graphql-jpa-query/actions/workflows/build.yml)
55
[![codecov](https://codecov.io/gh/introproventures/graphql-jpa-query/branch/master/graph/badge.svg)](https://codecov.io/gh/introproventures/graphql-jpa-query)
6-
[![Maven Central](https://img.shields.io/maven-central/v/com.introproventures/graphql-jpa-query.svg)](https://mvnrepository.com/artifact/com.introproventures/graphql-jpa-query)
7-
[![Jitpack.io](https://jitpack.io/v/introproventures/graphql-jpa-query.svg)](https://jitpack.io/#introproventures/graphql-jpa-query)
6+
[![Maven Central](https://img.shields.io/maven-central/v/com.introproventures/graphql-jpa-query.svg)](https://mvnrepository.com/artifact/com.introproventures/graphql-jpa-query)
87

98
GraphQL JPA Query library uses JPA 3.1 specification to derive and build GraphQL Apis using GraphQL Java for your JPA Entity Java Classes. It provides a powerfull JPA Query Schema Builder to generate GraphQL Schema using JPA EntityManager Api and instruments GraphQL Schema with JPA Query Data Fetchers that transform GraphQL queries into JPA queries on the fly.
109

@@ -14,7 +13,7 @@ Your applications can now use GraphQL queries that smoothly follow references be
1413

1514
While typical REST APIs require loading from multiple URLs, GraphQL APIs get all the data your app needs in a single request. Apps using GraphQL can be quick even on slow mobile network connections.
1615

17-
JPA 2.1 (Java Persistence Annotation) is Java's standard solution to bridge the gap between object-oriented domain models and relational database systems.
16+
JPA 3.1 (Java Persistence Annotation) is Java's standard solution to bridge the gap between object-oriented domain models and relational database systems.
1817

1918
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.
2019

@@ -59,7 +58,7 @@ The GraphQL-JPA-Query library consists of the following modules:
5958
4. `graphql-jpa-query-web` - Provides Graphql Web Controller with Spring Boot auto-configuration support
6059
5. `graphql-jpa-query-schema` - Provides interface specifications and implementation of the JPA Schema Builder and JPA Data Fetchers
6160
6. `graphql-jpa-query-boot-starter`- Provides Spring Boot starter support to enable GraphQL JPA Query in your project
62-
7. `graphql-jpa-query-example` - Provides example application for Starwars sample entity models
61+
7. `graphql-jpa-query-examples` - Provides example application for Starwars sample entity models
6362

6463
Building with Maven Central [![Maven Central](https://img.shields.io/maven-central/v/com.introproventures/graphql-jpa-query.svg)](https://mvnrepository.com/artifact/com.introproventures/graphql-jpa-query)
6564
------------------------
@@ -99,41 +98,6 @@ For GraphQL JPA Query Boot Starter use:
9998
<version>tag</version>
10099
</dependency>
101100

102-
Building with jitpack.io [![Release](https://jitpack.io/v/introproventures/graphql-jpa-query.svg)](https://jitpack.io/#introproventures/graphql-jpa-query)
103-
------------------------
104-
You can simply use jitpack.io to include and build individual modules in your project. You will need to add jitpack.io repository in our project to resolve required artifacts using valid release tag.
105-
106-
<repositories>
107-
<repository>
108-
<id>jitpack.io</id>
109-
<url>https://jitpack.io</url>
110-
</repository>
111-
</repositories>
112-
113-
For GraphQL JPA Annotations use:
114-
115-
<dependency>
116-
<groupId>com.github.introproventures.graphql-jpa-query</groupId>
117-
<artifactId>graphql-jpa-query-annotations</artifactId>
118-
<version>tag</version>
119-
</dependency>
120-
121-
For GraphQL JPA Schema Builder use:
122-
123-
<dependency>
124-
<groupId>com.github.introproventures.graphql-jpa-query</groupId>
125-
<artifactId>graphql-jpa-query-schema</artifactId>
126-
<version>tag</version>
127-
</dependency>
128-
129-
For GraphQL JPA Query Boot Starter use:
130-
131-
<dependency>
132-
<groupId>com.github.introproventures.graphql-jpa-query</groupId>
133-
<artifactId>graphql-jpa-query-boot-starter</artifactId>
134-
<version>tag</version>
135-
</dependency>
136-
137101
Other Dependencies
138102
-----------------
139103
The core library module `graphql-jpa-query-schema` keeps dependencies to a minimum. The main dependecies for schema module are `graphql-java`, `evo-inflector`, `javax.transaction-api`, `hibernate-jpa-2.1-api`. The tests depend on Spring Boot 2.1 with Web and Hibernate for JPA starters as well as Project Lombok.
@@ -581,10 +545,6 @@ You can run GraphQL queries in the left pannel. Type the query and hit the run b
581545
panel. If your query has variables, there is a minimized panel at the bottom left. Simply click on this to expand, and
582546
type in your variables as a JSON string with quoted keys.
583547

584-
Run Example in Docker
585-
------
586-
You can quickly start GraphQL JPA Query Example in Docker.
587-
588548
License
589549
-------
590550
Apache License v2.0

0 commit comments

Comments
 (0)