Skip to content

Commit 978d9d0

Browse files
authored
feat: add graphql-jpa-query-introspection module (#276)
1 parent caf8d97 commit 978d9d0

40 files changed

+36
-5
lines changed

graphql-jpa-query-dependencies/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,11 @@
7070
<artifactId>graphql-jpa-query-graphiql</artifactId>
7171
<version>${project.version}</version>
7272
</dependency>
73+
<dependency>
74+
<groupId>com.introproventures</groupId>
75+
<artifactId>graphql-jpa-query-introspection</artifactId>
76+
<version>${project.version}</version>
77+
</dependency>
7378
<dependency>
7479
<groupId>joda-time</groupId>
7580
<artifactId>joda-time</artifactId>
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<parent>
6+
<groupId>com.introproventures</groupId>
7+
<artifactId>graphql-jpa-query-build</artifactId>
8+
<version>0.4.12-SNAPSHOT</version>
9+
<relativePath>../graphql-jpa-query-build</relativePath>
10+
</parent>
11+
<artifactId>graphql-jpa-query-introspection</artifactId>
12+
13+
<dependencies>
14+
<dependency>
15+
<groupId>javax.persistence</groupId>
16+
<artifactId>javax.persistence-api</artifactId>
17+
<scope>test</scope>
18+
</dependency>
19+
<dependency>
20+
<groupId>com.introproventures</groupId>
21+
<artifactId>graphql-jpa-query-annotations</artifactId>
22+
<scope>test</scope>
23+
</dependency>
24+
</dependencies>
25+
</project>
Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,9 @@
1818
import java.util.List;
1919
import java.util.Objects;
2020

21-
import org.slf4j.Logger;
22-
import org.slf4j.LoggerFactory;
23-
2421

2522
public abstract class ReflectionUtil {
2623

27-
private static final Logger logger = LoggerFactory.getLogger(ReflectionUtil.class);
28-
2924
public static Field[] getAllFieldsOfClass(Class<?> clazz) {
3025
if (clazz == null) {
3126
return null;

graphql-jpa-query-schema/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@
1818
<artifactId>graphql-jpa-query-annotations</artifactId>
1919
</dependency>
2020

21+
<dependency>
22+
<groupId>com.introproventures</groupId>
23+
<artifactId>graphql-jpa-query-introspection</artifactId>
24+
</dependency>
25+
2126
<dependency>
2227
<groupId>com.graphql-java</groupId>
2328
<artifactId>graphql-java</artifactId>

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444
<module>graphql-jpa-query-example-model-books</module>
4545
<module>graphql-jpa-query-graphiql</module>
4646
<module>graphql-jpa-query-example-relay</module>
47+
<module>graphql-jpa-query-introspection</module>
4748
</modules>
4849

4950
<distributionManagement>

0 commit comments

Comments
 (0)