File tree Expand file tree Collapse file tree
src/main/java/graphql/execution Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1212
1313public class FieldCollector {
1414
15- private ValuesResolver valuesResolver ;
1615 private ConditionalNodes conditionalNodes ;
1716
1817 private SchemaUtil schemaUtil = new SchemaUtil ();
1918
2019 public FieldCollector () {
21- valuesResolver = new ValuesResolver ();
2220 conditionalNodes = new ConditionalNodes ();
2321 }
2422
Original file line number Diff line number Diff line change 55import graphql .language .NonNullType ;
66import graphql .language .Type ;
77import graphql .language .TypeName ;
8- import graphql .schema .*;
8+ import graphql .schema .GraphQLList ;
9+ import graphql .schema .GraphQLNonNull ;
10+ import graphql .schema .GraphQLSchema ;
11+ import graphql .schema .GraphQLType ;
912
1013public class TypeFromAST {
1114
12- private static SchemaUtil schemaUtil = new SchemaUtil ();
1315
1416 public static GraphQLType getTypeFromAST (GraphQLSchema schema , Type type ) {
1517 if (type instanceof ListType ) {
You can’t perform that action at this time.
0 commit comments