Uses of Class
graphql.schema.GraphQLInputObjectField
Packages that use GraphQLInputObjectField
Package
Description
-
Uses of GraphQLInputObjectField in graphql.analysis
Methods in graphql.analysis with parameters of type GraphQLInputObjectFieldModifier and TypeMethodDescription(package private) QueryVisitorFieldArgumentInputValueImplQueryVisitorFieldArgumentInputValueImpl.incompleteNewChild(GraphQLInputObjectField inputObjectField) -
Uses of GraphQLInputObjectField in graphql.analysis.values
Methods in graphql.analysis.values with parameters of type GraphQLInputObjectFieldModifier and TypeMethodDescriptiondefault @Nullable ObjectValueVisitor.visitInputObjectFieldValue(@Nullable Object coercedValue, GraphQLInputObjectType inputObjectType, GraphQLInputObjectField inputObjectField, ValueVisitor.InputElements inputElements) This is called when an input object field value is encountered -
Uses of GraphQLInputObjectField in graphql.execution
Constructors in graphql.execution with parameters of type GraphQLInputObjectFieldModifierConstructorDescriptionNonNullableValueCoercedAsNullException(GraphQLInputObjectField inputTypeField) NonNullableValueCoercedAsNullException(GraphQLInputObjectField inputTypeField, List<Object> path) -
Uses of GraphQLInputObjectField in graphql.relay
Method parameters in graphql.relay with type arguments of type GraphQLInputObjectFieldModifier and TypeMethodDescriptionRelay.mutation(String name, String fieldName, List<GraphQLInputObjectField> inputFields, List<GraphQLFieldDefinition> outputFields, DataFetcher dataFetcher) Relay.mutationWithClientMutationId(String name, String fieldName, List<GraphQLInputObjectField> inputFields, List<GraphQLFieldDefinition> outputFields, DataFetcher dataFetcher) -
Uses of GraphQLInputObjectField in graphql.schema
Fields in graphql.schema with type parameters of type GraphQLInputObjectFieldModifier and TypeFieldDescriptionprivate final com.google.common.collect.ImmutableMap<String, GraphQLInputObjectField> GraphQLInputObjectType.fieldMapprivate final Map<String, GraphQLInputObjectField> GraphQLInputObjectType.Builder.fieldsMethods in graphql.schema that return GraphQLInputObjectFieldModifier and TypeMethodDescriptionGraphQLInputObjectField.Builder.build()GraphQLInputFieldsContainer.getFieldDefinition(String name) GraphQLInputObjectType.getFieldDefinition(String name) GraphQLInputObjectField.transform(Consumer<GraphQLInputObjectField.Builder> builderConsumer) This helps you transform the current GraphQLInputObjectField into another one by starting a builder with all the current values and allows you to transform it how you want.GraphQLInputObjectField.withNewChildren(SchemaElementChildrenContainer newChildren) Methods in graphql.schema that return types with arguments of type GraphQLInputObjectFieldModifier and TypeMethodDescriptionprivate com.google.common.collect.ImmutableMap<String, GraphQLInputObjectField> GraphQLInputObjectType.buildDefinitionMap(List<GraphQLInputObjectField> fieldDefinitions) GraphQLInputFieldsContainer.getFieldDefinitions()GraphQLInputObjectType.getFieldDefinitions()GraphQLInputObjectType.getFields()Methods in graphql.schema with parameters of type GraphQLInputObjectFieldModifier and TypeMethodDescriptionGraphQLInputObjectType.Builder.field(GraphQLInputObjectField field) static <T> TGraphQLInputObjectField.getInputFieldDefaultValue(GraphQLInputObjectField inputObjectField) This static helper method will give out a java value based on the semantics captured in theInputValueWithStatefromGraphQLInputObjectField.getInputFieldDefaultValue()Note : You MUST only call this on aGraphQLInputObjectFieldthat is part of a fully formed schema.GraphQLInputObjectField.newInputObjectField(GraphQLInputObjectField existing) GraphQLTypeResolvingVisitor.TypeRefResolvingVisitor.visitGraphQLInputObjectField(GraphQLInputObjectField node, TraverserContext<GraphQLSchemaElement> context) GraphQLTypeVisitor.visitGraphQLInputObjectField(GraphQLInputObjectField node, TraverserContext<GraphQLSchemaElement> context) GraphQLTypeVisitorStub.visitGraphQLInputObjectField(GraphQLInputObjectField node, TraverserContext<GraphQLSchemaElement> context) Method parameters in graphql.schema with type arguments of type GraphQLInputObjectFieldModifier and TypeMethodDescriptionprivate com.google.common.collect.ImmutableMap<String, GraphQLInputObjectField> GraphQLInputObjectType.buildDefinitionMap(List<GraphQLInputObjectField> fieldDefinitions) GraphQLInputObjectType.Builder.fields(List<GraphQLInputObjectField> fields) GraphQLInputObjectType.Builder.replaceFields(List<GraphQLInputObjectField> fields) Constructors in graphql.schema with parameters of type GraphQLInputObjectFieldConstructor parameters in graphql.schema with type arguments of type GraphQLInputObjectFieldModifierConstructorDescriptionprivateGraphQLInputObjectType(String name, String description, List<GraphQLInputObjectField> fields, List<GraphQLDirective> directives, List<GraphQLAppliedDirective> appliedDirectives, InputObjectTypeDefinition definition, List<InputObjectTypeExtensionDefinition> extensionDefinitions) -
Uses of GraphQLInputObjectField in graphql.schema.diffing
Methods in graphql.schema.diffing with parameters of type GraphQLInputObjectFieldModifier and TypeMethodDescriptionprivate voidSchemaGraphFactory.handleInputField(Vertex inputFieldVertex, GraphQLInputObjectField inputField, SchemaGraph schemaGraph, GraphQLSchema graphQLSchema) private VertexSchemaGraphFactory.newInputField(GraphQLInputObjectField inputField, SchemaGraph schemaGraph, boolean isIntrospectionNode) -
Uses of GraphQLInputObjectField in graphql.schema.idl
Methods in graphql.schema.idl that return GraphQLInputObjectFieldModifier and TypeMethodDescriptionprivate GraphQLInputObjectFieldSchemaGeneratorHelper.buildInputField(SchemaGeneratorHelper.BuildContext buildCtx, InputValueDefinition fieldDef) default GraphQLInputObjectFieldSchemaDirectiveWiring.onInputObjectField(SchemaDirectiveWiringEnvironment<GraphQLInputObjectField> environment) This is called when an input object field is encountered, which gives the schema directive a chance to modify the shape and behaviour of that DSL elementprivate GraphQLInputObjectFieldSchemaGeneratorDirectiveHelper.onInputObjectField(GraphQLInputObjectField element, SchemaGeneratorDirectiveHelper.Parameters params) Methods in graphql.schema.idl with parameters of type GraphQLInputObjectFieldModifier and TypeMethodDescriptionprivate GraphQLInputObjectFieldSchemaGeneratorDirectiveHelper.onInputObjectField(GraphQLInputObjectField element, SchemaGeneratorDirectiveHelper.Parameters params) Method parameters in graphql.schema.idl with type arguments of type GraphQLInputObjectFieldModifier and TypeMethodDescriptiondefault GraphQLInputObjectFieldSchemaDirectiveWiring.onInputObjectField(SchemaDirectiveWiringEnvironment<GraphQLInputObjectField> environment) This is called when an input object field is encountered, which gives the schema directive a chance to modify the shape and behaviour of that DSL element -
Uses of GraphQLInputObjectField in graphql.schema.impl
Methods in graphql.schema.impl with parameters of type GraphQLInputObjectFieldModifier and TypeMethodDescriptionGraphQLTypeCollectingVisitor.visitGraphQLInputObjectField(GraphQLInputObjectField node, TraverserContext<GraphQLSchemaElement> context) MultiReadOnlyGraphQLTypeVisitor.visitGraphQLInputObjectField(GraphQLInputObjectField node, TraverserContext<GraphQLSchemaElement> context) -
Uses of GraphQLInputObjectField in graphql.schema.transform
Methods in graphql.schema.transform with parameters of type GraphQLInputObjectFieldModifier and TypeMethodDescriptionFieldVisibilitySchemaTransformation.FieldRemovalVisitor.visitGraphQLInputObjectField(GraphQLInputObjectField definition, TraverserContext<GraphQLSchemaElement> context) -
Uses of GraphQLInputObjectField in graphql.schema.validation
Methods in graphql.schema.validation with parameters of type GraphQLInputObjectFieldModifier and TypeMethodDescriptionprivate voidTypeAndFieldRule.validateInputFieldDefinition(String typeName, GraphQLInputObjectField inputObjectField, SchemaValidationErrorCollector errorCollector) DefaultValuesAreValid.visitGraphQLInputObjectField(GraphQLInputObjectField inputObjectField, TraverserContext<GraphQLSchemaElement> context) InputAndOutputTypesUsedAppropriately.visitGraphQLInputObjectField(GraphQLInputObjectField fieldDef, TraverserContext<GraphQLSchemaElement> context) OneOfInputObjectRules.visitGraphQLInputObjectField(GraphQLInputObjectField inputObjectField, TraverserContext<GraphQLSchemaElement> context) -
Uses of GraphQLInputObjectField in graphql.schema.visibility
Methods in graphql.schema.visibility that return GraphQLInputObjectFieldModifier and TypeMethodDescriptionBlockedFields.getFieldDefinition(GraphQLInputFieldsContainer fieldsContainer, String fieldName) DefaultGraphqlFieldVisibility.getFieldDefinition(GraphQLInputFieldsContainer fieldsContainer, String fieldName) default GraphQLInputObjectFieldGraphqlFieldVisibility.getFieldDefinition(GraphQLInputFieldsContainer fieldsContainer, String fieldName) Called to get a named field from an input object typeMethods in graphql.schema.visibility that return types with arguments of type GraphQLInputObjectFieldModifier and TypeMethodDescriptionBlockedFields.getFieldDefinitions(GraphQLInputFieldsContainer fieldsContainer) DefaultGraphqlFieldVisibility.getFieldDefinitions(GraphQLInputFieldsContainer fieldsContainer) default List<GraphQLInputObjectField> GraphqlFieldVisibility.getFieldDefinitions(GraphQLInputFieldsContainer fieldsContainer) Called to get the list of fields from an input object type -
Uses of GraphQLInputObjectField in graphql.schema.visitor
Subclasses with type arguments of type GraphQLInputObjectField in graphql.schema.visitorModifier and TypeClassDescription(package private) static classSubinterfaces with type arguments of type GraphQLInputObjectField in graphql.schema.visitorModifier and TypeInterfaceDescriptionstatic interfaceAGraphQLSchemaVisitorEnvironmentenvironment specific toGraphQLInputObjectFieldMethods in graphql.schema.visitor with parameters of type GraphQLInputObjectFieldModifier and TypeMethodDescriptionGraphQLSchemaVisitorAdapter.visitGraphQLInputObjectField(GraphQLInputObjectField node, TraverserContext<GraphQLSchemaElement> context) default GraphQLSchemaTraversalControlGraphQLSchemaVisitor.visitInputObjectField(GraphQLInputObjectField inputObjectField, GraphQLSchemaVisitor.InputObjectFieldVisitorEnvironment environment) Called when visiting aGraphQLInputObjectFieldin the schema