Skip to content

Commit 93f2273

Browse files
authored
Update README.md
1 parent 78e9dfd commit 93f2273

File tree

1 file changed

+20
-3
lines changed

1 file changed

+20
-3
lines changed

README.md

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,21 @@ This library uses [graphql-java 11.0](https://github.com/andimarek/graphql-java)
1010

1111
It implements a schema builder to generate GraphQL Schema using JPA EntityManager with JPA Query Data Fetchers that transform GraphQL queries into JPA queries 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.
1212

13+
Tested using JDK Versions
14+
----------------------
15+
* Jdk 8
16+
* Jdk 11
17+
1318
Modules
1419
-------
1520
The GraphQL-JPA-Query library consists of the following modules:
1621

1722
1. `graphql-jpa-query-annotations` - Provides annotations for instrumenting your entity models with GraphQL Schema Descriptions
18-
2. `graphql-jpa-query-schema` - Provides interface specifications and implementation of the JPA Schema Builder and JPA Data Fetchers
19-
3. `graphql-jpa-query-boot-starter`- Provides Spring Boot auto-configuration support to enable GraphQL JPA Query in your project
20-
4. `graphql-jpa-query-example` - Provides example application for Starwars sample entity models
23+
2. `graphql-jpa-query-dependencies` - Provides dependency management for project and external modules versions
24+
3. `graphql-jpa-query-autoconfigure` - Provides autoconfiguration and merging of multiple GraphQL schemas in Spring Boot context
25+
4. `graphql-jpa-query-schema` - Provides interface specifications and implementation of the JPA Schema Builder and JPA Data Fetchers
26+
5. `graphql-jpa-query-boot-starter`- Provides Spring Boot starter support to enable GraphQL JPA Query in your project
27+
6. `graphql-jpa-query-example` - Provides example application for Starwars sample entity models
2128

2229
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)
2330
------------------------
@@ -31,6 +38,16 @@ For GraphQL JPA Annotations use:
3138
<version>tag</version>
3239
</dependency>
3340

41+
To import GraphQL JPA Dependencies into your dependencyManagement use:
42+
43+
<dependency>
44+
<groupId>com.introproventures</groupId>
45+
<artifactId>graphql-jpa-query-dependencies</artifactId>
46+
<version>tag</version>
47+
<type>pom</type>
48+
<scope>import</scope>
49+
</dependency>
50+
3451
For GraphQL JPA Schema Builder use:
3552

3653
<dependency>

0 commit comments

Comments
 (0)