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
This library uses [graphql-java 6.0](https://github.com/andimarek/graphql-java) to derive and build the GraphQL schema from JPA Entity Schema provided by entity classes.
9
+
This library uses [graphql-java 9.4](https://github.com/andimarek/graphql-java) to derive and build the GraphQL schema from JPA Entity Schema provided by entity classes.
10
10
11
11
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.
Copy file name to clipboardExpand all lines: graphql-jpa-query-schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/GraphQLJpaQueryDataFetcher.java
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -94,7 +94,8 @@ public Object get(DataFetchingEnvironment environment) {
Copy file name to clipboardExpand all lines: graphql-jpa-query-schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/GraphQLJpaSchemaBuilder.java
Copy file name to clipboardExpand all lines: graphql-jpa-query-schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/QraphQLJpaBaseDataFetcher.java
+23-4Lines changed: 23 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -63,6 +63,7 @@
63
63
importgraphql.language.FloatValue;
64
64
importgraphql.language.IntValue;
65
65
importgraphql.language.Node;
66
+
importgraphql.language.NodeVisitor;
66
67
importgraphql.language.ObjectField;
67
68
importgraphql.language.ObjectValue;
68
69
importgraphql.language.SelectionSet;
@@ -78,6 +79,8 @@
78
79
importgraphql.schema.GraphQLObjectType;
79
80
importgraphql.schema.GraphQLSchema;
80
81
importgraphql.schema.GraphQLType;
82
+
importgraphql.util.TraversalControl;
83
+
importgraphql.util.TraverserContext;
81
84
82
85
/**
83
86
* Provides base implemetation for GraphQL JPA Query Data Fetchers
0 commit comments