Class InputObjectBuilder
- java.lang.Object
-
- graphql.annotations.processor.typeBuilders.InputObjectBuilder
-
public class InputObjectBuilder extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description InputObjectBuilder(GraphQLObjectInfoRetriever graphQLObjectInfoRetriever, SearchAlgorithm fieldSearchAlgorithm, SearchAlgorithm methodSearchAlgorithm, GraphQLFieldRetriever graphQLFieldRetriever)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description graphql.schema.GraphQLInputObjectType.BuildergetInputObjectBuilder(java.lang.Class<?> object, ProcessingElementsContainer container)This will examine the object class and return aGraphQLInputObjectType.Builderready for further definition
-
-
-
Constructor Detail
-
InputObjectBuilder
public InputObjectBuilder(GraphQLObjectInfoRetriever graphQLObjectInfoRetriever, SearchAlgorithm fieldSearchAlgorithm, SearchAlgorithm methodSearchAlgorithm, GraphQLFieldRetriever graphQLFieldRetriever)
-
-
Method Detail
-
getInputObjectBuilder
public graphql.schema.GraphQLInputObjectType.Builder getInputObjectBuilder(java.lang.Class<?> object, ProcessingElementsContainer container) throws GraphQLAnnotationsExceptionThis will examine the object class and return aGraphQLInputObjectType.Builderready for further definition- Parameters:
object- the object class to examinecontainer- a class that hold several members that are required in order to build schema- Returns:
- a
GraphQLInputObjectType.Builderthat represents that object class - Throws:
GraphQLAnnotationsException- if the object class cannot be examined
-
-