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: spring-graphql/src/main/java/org/springframework/graphql/data/method/annotation/support/AnnotatedControllerConfigurer.java
+27-2Lines changed: 27 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -32,6 +32,7 @@
32
32
importgraphql.schema.DataFetcher;
33
33
importgraphql.schema.DataFetchingEnvironment;
34
34
importgraphql.schema.FieldCoordinates;
35
+
importgraphql.schema.GraphQLCodeRegistry;
35
36
importgraphql.schema.idl.RuntimeWiring;
36
37
importorg.apache.commons.logging.Log;
37
38
importorg.apache.commons.logging.LogFactory;
@@ -72,6 +73,10 @@
72
73
* annotated handler methods in {@link Controller @Controller} classes and
73
74
* registers them as {@link DataFetcher}s.
74
75
*
76
+
* <p>In addition to initializing a {@link RuntimeWiring.Builder}, this class, also
77
+
* provides an option to {@link #configure(GraphQLCodeRegistry.Builder) configure}
78
+
* data fetchers on a {@link GraphQLCodeRegistry.Builder}.
79
+
*
75
80
* @author Rossen Stoyanchev
76
81
* @author Brian Clozel
77
82
* @since 1.0.0
@@ -185,7 +190,7 @@ public void afterPropertiesSet() {
0 commit comments