Uses of Class
graphql.schema.GraphQLObjectType
Packages that use GraphQLObjectType
Package
Description
-
Uses of GraphQLObjectType in graphql.execution
Methods in graphql.execution that return GraphQLObjectTypeModifier and TypeMethodDescriptionExecutionStepInfo.getFieldContainer()Deprecated.ExecutionStepInfo.getObjectType()The GraphQLObjectType where fieldDefinition is defined.FieldCollectorParameters.getObjectType()protected GraphQLObjectTypeExecutionStrategy.resolveType(ExecutionContext executionContext, ExecutionStrategyParameters parameters, GraphQLType fieldType) ResolveType.resolveType(ExecutionContext executionContext, MergedField field, Object source, ExecutionStepInfo executionStepInfo, GraphQLType fieldType, Object localContext) ResolveType.resolveTypeForInterface(TypeResolutionEnvironment env, GraphQLInterfaceType abstractType) ResolveType.resolveTypeForUnion(TypeResolutionEnvironment env, GraphQLUnionType abstractType) Methods in graphql.execution with parameters of type GraphQLObjectTypeModifier and TypeMethodDescriptionprotected CompletableFuture<ExecutionResult> ExecutionStrategy.completeValueForObject(ExecutionContext executionContext, ExecutionStrategyParameters parameters, GraphQLObjectType resolvedObjectType, Object result) Called to turn a java object value into an graphql object valueprotected ExecutionStepInfoExecutionStrategy.createExecutionStepInfo(ExecutionContext executionContext, ExecutionStrategyParameters parameters, GraphQLFieldDefinition fieldDefinition, GraphQLObjectType fieldContainer) Builds the type info hierarchy for the current fieldExecutionStepInfo.Builder.fieldContainer(GraphQLObjectType fieldContainer) protected GraphQLFieldDefinitionExecutionStrategy.getFieldDef(GraphQLSchema schema, GraphQLObjectType parentType, Field field) Called to discover the field definition give the current parameters and the ASTFieldFieldCollectorParameters.Builder.objectType(GraphQLObjectType objectType) -
Uses of GraphQLObjectType in graphql.introspection
Fields in graphql.introspection declared as GraphQLObjectTypeModifier and TypeFieldDescriptionstatic final GraphQLObjectTypeIntrospection.__Directivestatic final GraphQLObjectTypeIntrospection.__EnumValuestatic final GraphQLObjectTypeIntrospection.__Fieldstatic final GraphQLObjectTypeIntrospection.__InputValuestatic final GraphQLObjectTypeIntrospection.__Schemastatic final GraphQLObjectTypeIntrospection.__TypeMethods in graphql.introspection with parameters of type GraphQLObjectTypeModifier and TypeMethodDescriptionstatic GraphQLFieldDefinitionIntrospection.buildSchemaField(GraphQLObjectType introspectionSchemaType) static GraphQLFieldDefinitionIntrospection.buildTypeField(GraphQLObjectType introspectionSchemaType) -
Uses of GraphQLObjectType in graphql.normalized
Methods in graphql.normalized with parameters of type GraphQLObjectTypeModifier and TypeMethodDescriptionExecutableNormalizedOperationFactory.collectFromOperation(FieldCollectorNormalizedQueryParams parameters, OperationDefinition operationDefinition, GraphQLObjectType rootType) -
Uses of GraphQLObjectType in graphql.relay
Fields in graphql.relay declared as GraphQLObjectTypeMethods in graphql.relay that return GraphQLObjectTypeModifier and TypeMethodDescriptionRelay.connectionType(String name, GraphQLObjectType edgeType, List<GraphQLFieldDefinition> connectionFields) Relay.edgeType(String name, GraphQLOutputType nodeType, GraphQLInterfaceType nodeInterface, List<GraphQLFieldDefinition> edgeFields) Methods in graphql.relay with parameters of type GraphQLObjectTypeModifier and TypeMethodDescriptionRelay.connectionType(String name, GraphQLObjectType edgeType, List<GraphQLFieldDefinition> connectionFields) -
Uses of GraphQLObjectType in graphql.schema
Methods in graphql.schema that return GraphQLObjectTypeModifier and TypeMethodDescriptionGraphQLObjectType.Builder.build()GraphQLSchema.getIntrospectionSchemaType()GraphQLSchema.getMutationType()GraphQLSchema.getObjectType(String typeName) Called to return a namedGraphQLObjectTypefrom the schemaGraphQLSchema.getQueryType()GraphQLSchema.getSubscriptionType()TypeResolver.getType(TypeResolutionEnvironment env) This call back is invoked passing in a context object to allow you to know what type to use dynamically during runtime forGraphQLInterfaceTypes andGraphQLUnionTypesTypeResolverProxy.getType(TypeResolutionEnvironment env) GraphQLObjectType.transform(Consumer<GraphQLObjectType.Builder> builderConsumer) This helps you transform the current GraphQLObjectType into another one by starting a builder with all the current values and allows you to transform it how you want.Methods in graphql.schema that return types with arguments of type GraphQLObjectTypeModifier and TypeMethodDescriptionGraphQLSchema.getImplementations(GraphQLInterfaceType type) This will return the list ofGraphQLObjectTypetypes that implement the given interface type.SelectedField.getObjectTypes()Methods in graphql.schema with parameters of type GraphQLObjectTypeModifier and TypeMethodDescriptionGraphQLCodeRegistry.Builder.dataFetcher(GraphQLObjectType parentType, GraphQLFieldDefinition fieldDefinition, DataFetcher<?> dataFetcher) Sets the data fetcher for a specific field inside an object typeDataFetcher<?> GraphQLCodeRegistry.Builder.getDataFetcher(GraphQLObjectType parentType, GraphQLFieldDefinition fieldDefinition) Returns a data fetcher associated with a field within an object typeDataFetcher<?> GraphQLCodeRegistry.getDataFetcher(GraphQLObjectType parentType, GraphQLFieldDefinition fieldDefinition) Returns a data fetcher associated with a field within an object typeGraphQLSchema.Builder.introspectionSchemaType(GraphQLObjectType introspectionSchemaType) booleanGraphQLSchema.isPossibleType(GraphQLNamedType abstractType, GraphQLObjectType concreteType) Returns true if a specified concrete type is a possible type of a provided abstract type.booleanGraphQLUnionType.isPossibleType(GraphQLObjectType graphQLObjectType) Returns true of the object type is a member of this Union type.GraphQLSchema.Builder.mutation(GraphQLObjectType mutationType) static GraphQLObjectType.BuilderGraphQLObjectType.newObject(GraphQLObjectType existing) GraphQLUnionType.Builder.possibleType(GraphQLObjectType type) GraphQLUnionType.Builder.possibleTypes(GraphQLObjectType... type) GraphQLSchema.Builder.query(GraphQLObjectType queryType) GraphQLSchema.Builder.subscription(GraphQLObjectType subscriptionType) GraphQLTypeResolvingVisitor.visitGraphQLObjectType(GraphQLObjectType node, TraverserContext<GraphQLSchemaElement> context) GraphQLTypeVisitor.visitGraphQLObjectType(GraphQLObjectType node, TraverserContext<GraphQLSchemaElement> context) GraphQLTypeVisitorStub.visitGraphQLObjectType(GraphQLObjectType node, TraverserContext<GraphQLSchemaElement> context) Constructors in graphql.schema with parameters of type GraphQLObjectType -
Uses of GraphQLObjectType in graphql.schema.idl
Methods in graphql.schema.idl that return GraphQLObjectTypeModifier and TypeMethodDescriptiondefault GraphQLObjectTypeSchemaDirectiveWiring.onObject(SchemaDirectiveWiringEnvironment<GraphQLObjectType> environment) This is called when an object is encountered, which gives the schema directive a chance to modify the shape and behaviour of that DSL elementSchemaGeneratorDirectiveHelper.onObject(GraphQLObjectType objectType, graphql.schema.idl.SchemaGeneratorDirectiveHelper.Parameters params) Methods in graphql.schema.idl with parameters of type GraphQLObjectTypeModifier and TypeMethodDescriptionSchemaGeneratorDirectiveHelper.onObject(GraphQLObjectType objectType, graphql.schema.idl.SchemaGeneratorDirectiveHelper.Parameters params) Method parameters in graphql.schema.idl with type arguments of type GraphQLObjectTypeModifier and TypeMethodDescriptiondefault GraphQLObjectTypeSchemaDirectiveWiring.onObject(SchemaDirectiveWiringEnvironment<GraphQLObjectType> environment) This is called when an object is encountered, which gives the schema directive a chance to modify the shape and behaviour of that DSL element -
Uses of GraphQLObjectType in graphql.schema.impl
Methods in graphql.schema.impl that return GraphQLObjectTypeModifier and TypeMethodDescriptionstatic GraphQLObjectTypeSchemaUtil.getOperationRootType(GraphQLSchema graphQLSchema, OperationDefinition operationDefinition) Methods in graphql.schema.impl that return types with arguments of type GraphQLObjectTypeModifier and TypeMethodDescriptionstatic com.google.common.collect.ImmutableMap<String, List<GraphQLObjectType>> SchemaUtil.groupInterfaceImplementationsByName(List<GraphQLNamedType> allTypesAsList) Methods in graphql.schema.impl with parameters of type GraphQLObjectTypeModifier and TypeMethodDescriptionGraphQLTypeCollectingVisitor.visitGraphQLObjectType(GraphQLObjectType node, TraverserContext<GraphQLSchemaElement> context) MultiReadOnlyGraphQLTypeVisitor.visitGraphQLObjectType(GraphQLObjectType node, TraverserContext<GraphQLSchemaElement> context) -
Uses of GraphQLObjectType in graphql.schema.validation
Methods in graphql.schema.validation with parameters of type GraphQLObjectTypeModifier and TypeMethodDescriptionTypeAndFieldRule.visitGraphQLObjectType(GraphQLObjectType type, TraverserContext<GraphQLSchemaElement> context) TypesImplementInterfaces.visitGraphQLObjectType(GraphQLObjectType type, TraverserContext<GraphQLSchemaElement> context) -
Uses of GraphQLObjectType in graphql.schema.visitor
Subinterfaces with type arguments of type GraphQLObjectType in graphql.schema.visitorModifier and TypeInterfaceDescriptionstatic interfaceAGraphQLSchemaVisitorEnvironmentenvironment specific toGraphQLObjectTypeMethods in graphql.schema.visitor with parameters of type GraphQLObjectTypeModifier and TypeMethodDescriptiondefault GraphQLSchemaTraversalControlGraphQLSchemaVisitor.visitObjectType(GraphQLObjectType objectType, GraphQLSchemaVisitor.ObjectVisitorEnvironment environment) Called when visiting aGraphQLObjectTypein the schema
ExecutionStepInfo.getObjectType()instead as it is named better