Interface SchemaMappingInspector.ClassResolver
- Enclosing class:
 SchemaMappingInspector
public static interface SchemaMappingInspector.ClassResolver
Strategy to resolve the Java class(es) for a 
GraphQLObjectType, effectively
 the reverse of TypeResolver, for schema inspection purposes.- Since:
 - 1.2.0
 - Author:
 - Brian Clozel, Rossen Stoyanchev
 
- 
Method Summary
Modifier and TypeMethodDescriptionresolveClass(graphql.schema.GraphQLObjectType objectType, graphql.schema.GraphQLNamedOutputType interfaceOrUnionType) Return Java class(es) for the given GraphQL object type. 
- 
Method Details
- 
resolveClass
List<Class<?>> resolveClass(graphql.schema.GraphQLObjectType objectType, graphql.schema.GraphQLNamedOutputType interfaceOrUnionType) Return Java class(es) for the given GraphQL object type.- Parameters:
 objectType- theGraphQLObjectTypeto resolveinterfaceOrUnionType- either an interface the object implements, or a union the object is a member of
 
 -