Uses of Interface
graphql.schema.GraphQLType
Packages that use GraphQLType
Package
Description
-
Uses of GraphQLType in graphql
Fields in graphql declared as GraphQLTypeModifier and TypeFieldDescriptionprivate final GraphQLType
TypeMismatchError.expectedType
private final GraphQLType
TypeResolutionEnvironment.fieldType
Fields in graphql with type parameters of type GraphQLTypeModifier and TypeFieldDescriptionprivate static final Map
<Class<? extends GraphQLType>, Introspection.TypeKind> TypeMismatchError.GraphQLTypeToTypeKindMapping.registry
Methods in graphql that return GraphQLTypeMethods in graphql with parameters of type GraphQLTypeModifier and TypeMethodDescriptionstatic Introspection.TypeKind
TypeMismatchError.GraphQLTypeToTypeKindMapping.getTypeKindFromGraphQLType
(GraphQLType type) private String
TypeMismatchError.mkMessage
(ResultPath path, GraphQLType expectedType) Constructors in graphql with parameters of type GraphQLType -
Uses of GraphQLType in graphql.execution
Fields in graphql.execution declared as GraphQLTypeModifier and TypeFieldDescriptionprivate GraphQLType
TypeResolutionParameters.Builder.fieldType
private final GraphQLType
TypeResolutionParameters.fieldType
Methods in graphql.execution that return GraphQLTypeModifier and TypeMethodDescriptionTypeResolutionParameters.getFieldType()
static GraphQLType
TypeFromAST.getTypeFromAST
(GraphQLSchema schema, Type type) Methods in graphql.execution with parameters of type GraphQLTypeModifier and TypeMethodDescriptionprivate boolean
FieldCollector.checkTypeCondition
(FieldCollectorParameters parameters, GraphQLType conditionType) TypeResolutionParameters.Builder.fieldType
(GraphQLType fieldType) private static @Nullable Object
ValuesResolverConversion.literalToInternalValueImpl
(InputInterceptor inputInterceptor, GraphqlFieldVisibility fieldVisibility, GraphQLType type, Value inputValue, CoercedVariables coercedVariables, GraphQLContext graphqlContext, Locale locale) static Object
ValuesResolver.literalToNormalizedValue
(GraphqlFieldVisibility fieldVisibility, GraphQLType type, Value inputValue, Map<String, NormalizedInputValue> normalizedVariables) protected GraphQLObjectType
ExecutionStrategy.resolveType
(ExecutionContext executionContext, ExecutionStrategyParameters parameters, GraphQLType fieldType) ResolveType.resolveType
(ExecutionContext executionContext, MergedField field, Object source, ExecutionStepInfo executionStepInfo, GraphQLType fieldType, Object localContext) private static Object
ValuesResolverLegacy.serializeLegacy
(GraphQLType type, Object value, GraphQLContext graphqlContext, Locale locale) static Value
<?> ValuesResolver.valueToLiteral
(@NotNull InputValueWithState inputValueWithState, @NotNull GraphQLType type, GraphQLContext graphqlContext, Locale locale) static Value
<?> ValuesResolver.valueToLiteral
(@NotNull GraphqlFieldVisibility fieldVisibility, @NotNull InputValueWithState inputValueWithState, @NotNull GraphQLType type, GraphQLContext graphqlContext, Locale locale) Takes a value which can be in different states (internal, literal, external value) and converts into Literal(package private) static Object
ValuesResolverConversion.valueToLiteralImpl
(GraphqlFieldVisibility fieldVisibility, InputValueWithState inputValueWithState, GraphQLType type, ValuesResolver.ValueMode valueMode, GraphQLContext graphqlContext, Locale locale) (package private) static Value
<?> ValuesResolverLegacy.valueToLiteralLegacy
(Object value, GraphQLType type, GraphQLContext graphqlContext, Locale locale) Legacy logic to convert an arbitrary java object to an Ast Literal.Constructors in graphql.execution with parameters of type GraphQLTypeModifierConstructorDescriptionInputMapDefinesTooManyFieldsException
(GraphQLType graphQLType, String fieldName) NonNullableValueCoercedAsNullException
(VariableDefinition variableDefinition, GraphQLType graphQLType) NonNullableValueCoercedAsNullException
(VariableDefinition variableDefinition, String fieldName, GraphQLType graphQLType) NonNullableValueCoercedAsNullException
(VariableDefinition variableDefinition, String fieldName, List<Object> path, GraphQLType graphQLType) NonNullableValueCoercedAsNullException
(GraphQLType graphQLType) NonNullableValueCoercedAsNullException
(String fieldName, List<Object> path, GraphQLType graphQLType) UnresolvedTypeException
(GraphQLNamedOutputType interfaceOrUnionType, GraphQLType providedType) -
Uses of GraphQLType in graphql.introspection
Methods in graphql.introspection that return GraphQLTypeMethods in graphql.introspection with parameters of type GraphQLTypeModifier and TypeMethodDescriptionprivate GraphQLObjectType
IntrospectionWithDirectivesSupport.mkAppliedDirectiveType
(String name, GraphQLType directiveArgumentType) -
Uses of GraphQLType in graphql.schema
Subinterfaces of GraphQLType in graphql.schemaModifier and TypeInterfaceDescriptioninterface
interface
Types that can contain output fields are marked with this interfaceinterface
A GraphQLType which can implement interfacesinterface
Types that can contain input fields are marked with this interfaceinterface
Input types represent those set of types that are allowed to be accepted as graphql mutation input, as opposed toGraphQLOutputType
s which can only be used as graphql response output.interface
A modified type wraps another graphql type and modifies it behaviorinterface
Input types represent those set of types that are allowed to be accepted as graphql mutation input, as opposed toGraphQLOutputType
s which can only be used as graphql response output.interface
Output types represent those set of types that are allowed to be sent back as a graphql response, as opposed toGraphQLInputType
s which can only be used as graphql mutation input.interface
A GraphQLType which is also a named element, which means it has a getName() method.interface
interface
Output types represent those set of types that are allowed to be sent back as a graphql response, as opposed toGraphQLInputType
s which can only be used as graphql mutation input.interface
Classes in graphql.schema that implement GraphQLTypeModifier and TypeClassDescriptionclass
A graphql enumeration type has a limited set of values.class
graphql clearly delineates between the types of objects that represent the output of a query and input objects that can be fed into a graphql mutation.class
In graphql, an interface is an abstract type that defines the set of fields that a type must include to implement that interface.class
A modified type that indicates there is a list of the underlying wrapped type, eg a list of strings or a list of booleans.class
A modified type that indicates there the underlying wrapped type will not be null.class
This is the work horse type and represents an object with one or more field values that can be retrieved by the graphql system.class
A scalar type is a leaf node in the graphql tree of types.class
A special type to allow a object/interface types to reference itself.class
A union type is a polymorphic type that dynamically represents one of more concrete object types.Fields in graphql.schema declared as GraphQLTypeModifier and TypeFieldDescriptionprivate final GraphQLType
GraphQLList.originalWrappedType
private final GraphQLType
GraphQLNonNull.originalWrappedType
private GraphQLType
DataFetchingEnvironmentImpl.Builder.parentType
private final GraphQLType
DataFetchingEnvironmentImpl.parentType
private GraphQLType
GraphQLList.replacedWrappedType
private GraphQLType
GraphQLNonNull.replacedWrappedType
private final GraphQLType
GraphQLTypeResolvingVisitor.TypeRefResolvingVisitor.resolvedType
Fields in graphql.schema with type parameters of type GraphQLTypeModifier and TypeFieldDescriptionprivate final com.google.common.collect.ImmutableSet
<GraphQLType> GraphQLSchema.additionalTypes
private final Set
<GraphQLType> GraphQLSchema.Builder.additionalTypes
(package private) Set
<GraphQLType> SchemaTransformer.DummyRoot.additionalTypes
Methods in graphql.schema with type parameters of type GraphQLTypeModifier and TypeMethodDescriptionDefaultGraphqlTypeComparatorRegistry.Builder.addComparator
(GraphqlTypeComparatorEnvironment environment, Class<T> comparatorClass, Comparator<? super T> comparator) Registers aComparator
with an environment to control its permitted scope of operation.DefaultGraphqlTypeComparatorRegistry.Builder.addComparator
(UnaryOperator<GraphqlTypeComparatorEnvironment.Builder> builderFunction, Class<T> comparatorClass, Comparator<? super T> comparator) Convenience method which supplies an environment builder function.<T extends GraphQLType>
TGets the named type from the schema or null if it's not present.<T extends GraphQLType>
List<T> GraphQLSchema.getTypes
(Collection<String> typeNames) All types with the provided names.static <T extends GraphQLType>
TGraphQLTypeUtil.unwrapAllAs
(GraphQLType type) Unwraps all layers of the type or just returns the type again if it's not a wrapped type and then cast to the target type.static <T extends GraphQLType>
TGraphQLTypeUtil.unwrapNonNullAs
(GraphQLType type) Unwraps all non nullable layers of the type until it reaches a type that is notGraphQLNonNull
and then cast to the target type.static <T extends GraphQLType>
TGraphQLTypeUtil.unwrapOneAs
(GraphQLType type) Unwraps one layer of the type or just returns the type again if it's not a wrapped type and then cast to the target type.Methods in graphql.schema that return GraphQLTypeModifier and TypeMethodDescriptionGraphQLList.getOriginalWrappedType()
GraphQLNonNull.getOriginalWrappedType()
DataFetchingEnvironment.getParentType()
DataFetchingEnvironmentImpl.getParentType()
DelegatingDataFetchingEnvironment.getParentType()
@Nullable GraphQLType
Gets the named type from the schema or null if it's not presentGraphQLList.getWrappedType()
GraphQLModifiedType.getWrappedType()
GraphQLNonNull.getWrappedType()
private static GraphQLType
GraphQLTypeUtil.unwrapAllImpl
(GraphQLType type) static GraphQLType
GraphQLTypeUtil.unwrapNonNull
(GraphQLType type) Unwraps all non nullable layers of the type until it reaches a type that is notGraphQLNonNull
static GraphQLType
GraphQLTypeUtil.unwrapOne
(GraphQLType type) Unwraps one layer of the type or just returns the type again if it's not a wrapped typeMethods in graphql.schema that return types with arguments of type GraphQLTypeModifier and TypeMethodDescriptionGraphQLSchema.getAdditionalTypes()
static Stack
<GraphQLType> GraphQLTypeUtil.unwrapType
(GraphQLType type) graphql types can be wrapped inGraphQLNonNull
andGraphQLList
type wrappers so this method will unwrap the type down to the raw unwrapped type and return that wrapping as a stack, with the top of the stack being the raw underling type.Methods in graphql.schema with parameters of type GraphQLTypeModifier and TypeMethodDescriptionGraphQLSchema.Builder.additionalType
(GraphQLType additionalType) private void
GraphQLNonNull.assertNonNullWrapping
(GraphQLType wrappedType) static Object
PropertyDataFetcherHelper.getPropertyValue
(String propertyName, Object object, GraphQLType graphQLType) static Object
PropertyDataFetcherHelper.getPropertyValue
(String propertyName, Object object, GraphQLType graphQLType, Supplier<DataFetchingEnvironment> environment) PropertyFetchingImpl.getPropertyValue
(String propertyName, Object object, GraphQLType graphQLType, boolean dfeInUse, Supplier<Object> singleArgumentValue) private Object
PropertyFetchingImpl.getPropertyViaGetterMethod
(Object object, String propertyName, GraphQLType graphQLType, PropertyFetchingImpl.MethodFinder methodFinder, Supplier<Object> singleArgumentValue) private boolean
PropertyFetchingImpl.isBooleanProperty
(GraphQLType graphQLType) static boolean
GraphQLTypeUtil.isEnum
(GraphQLType type) Returns true if the given type is an enum typestatic boolean
GraphQLTypeUtil.isInput
(GraphQLType type) Returns true if the given type is an input typestatic boolean
GraphQLTypeUtil.isInterfaceOrUnion
(GraphQLType type) static boolean
GraphQLTypeUtil.isLeaf
(GraphQLType type) Returns true if the given type is a leaf type, that it cant contain any more fieldsstatic boolean
GraphQLTypeUtil.isList
(GraphQLType type) Returns true if the given type is a list typestatic boolean
GraphQLTypeUtil.isNonNull
(GraphQLType type) Returns true if the given type is a non null typestatic boolean
GraphQLTypeUtil.isNotWrapped
(GraphQLType type) Returns true if the given type is NOT a non null or list typestatic boolean
GraphQLTypeUtil.isNullable
(GraphQLType type) Returns true if the given type is a nullable typestatic boolean
GraphQLTypeUtil.isObjectType
(GraphQLType type) static boolean
GraphQLTypeUtil.isScalar
(GraphQLType type) Returns true if the given type is a scalar typestatic boolean
GraphQLTypeUtil.isWrapped
(GraphQLType type) Returns true if the given type is a non null or list type, that is a wrapped typestatic GraphQLList
GraphQLList.list
(GraphQLType wrappedType) A factory method for creating list types so that when used with static imports allows more readable code such as.type(list(GraphQLString))
static GraphQLNonNull
GraphQLNonNull.nonNull
(GraphQLType wrappedType) A factory method for creating non null types so that when used with static imports allows more readable code such as.type(nonNull(GraphQLString))
DataFetchingEnvironmentImpl.Builder.parentType
(GraphQLType parentType) (package private) void
GraphQLList.replaceType
(GraphQLType type) (package private) void
GraphQLNonNull.replaceType
(GraphQLType type) static String
GraphQLTypeUtil.simplePrint
(GraphQLType type) This will return the type in graphql SDL format, eg [typeName!]!static GraphQLUnmodifiedType
GraphQLTypeUtil.unwrapAll
(GraphQLType type) Unwraps all layers of the type or just returns the type again if it's not a wrapped typestatic <T extends GraphQLType>
TGraphQLTypeUtil.unwrapAllAs
(GraphQLType type) Unwraps all layers of the type or just returns the type again if it's not a wrapped type and then cast to the target type.private static GraphQLType
GraphQLTypeUtil.unwrapAllImpl
(GraphQLType type) static GraphQLType
GraphQLTypeUtil.unwrapNonNull
(GraphQLType type) Unwraps all non nullable layers of the type until it reaches a type that is notGraphQLNonNull
static <T extends GraphQLType>
TGraphQLTypeUtil.unwrapNonNullAs
(GraphQLType type) Unwraps all non nullable layers of the type until it reaches a type that is notGraphQLNonNull
and then cast to the target type.static GraphQLType
GraphQLTypeUtil.unwrapOne
(GraphQLType type) Unwraps one layer of the type or just returns the type again if it's not a wrapped typestatic <T extends GraphQLType>
TGraphQLTypeUtil.unwrapOneAs
(GraphQLType type) Unwraps one layer of the type or just returns the type again if it's not a wrapped type and then cast to the target type.static Stack
<GraphQLType> GraphQLTypeUtil.unwrapType
(GraphQLType type) graphql types can be wrapped inGraphQLNonNull
andGraphQLList
type wrappers so this method will unwrap the type down to the raw unwrapped type and return that wrapping as a stack, with the top of the stack being the raw underling type.Method parameters in graphql.schema with type arguments of type GraphQLTypeModifier and TypeMethodDescriptionGraphQLSchema.Builder.additionalTypes
(Set<GraphQLType> additionalTypes) GraphQLSchema.Builder.build
(Set<GraphQLType> additionalTypes) Deprecated.GraphQLSchema.Builder.build
(Set<GraphQLType> additionalTypes, Set<GraphQLDirective> additionalDirectives) Deprecated.Constructors in graphql.schema with parameters of type GraphQLTypeModifierConstructorDescriptionGraphQLList
(GraphQLType wrappedType) GraphQLNonNull
(GraphQLType wrappedType) (package private)
TypeRefResolvingVisitor
(GraphQLType resolvedType) -
Uses of GraphQLType in graphql.schema.idl
Methods in graphql.schema.idl with type parameters of type GraphQLTypeModifier and TypeMethodDescription<T extends GraphQLType>
TTypeInfo.decorate
(GraphQLType objectType) This will decorate a graphql type with the original hierarchy of non null and list'ness it originally contained in its definition typeMethods in graphql.schema.idl that return types with arguments of type GraphQLTypeModifier and TypeMethodDescription(package private) Set
<GraphQLType> SchemaGeneratorHelper.buildAdditionalTypes
(SchemaGeneratorHelper.BuildContext buildCtx) We build the query / mutation / subscription path as a tree of referenced types but then we build the rest of the types specified and put them in as additional typesMethods in graphql.schema.idl with parameters of type GraphQLTypeModifier and TypeMethodDescription<T extends GraphQLType>
TTypeInfo.decorate
(GraphQLType objectType) This will decorate a graphql type with the original hierarchy of non null and list'ness it originally contained in its definition typeSchemaPrinter.print
(GraphQLType type) (package private) String
SchemaPrinter.typeString
(GraphQLType rawType) -
Uses of GraphQLType in graphql.schema.impl
Methods in graphql.schema.impl with parameters of type GraphQLTypeModifier and TypeMethodDescriptionprivate void
GraphQLTypeCollectingVisitor.assertUniqueTypeObjects
(GraphQLNamedType type, GraphQLType existingType) Method parameters in graphql.schema.impl with type arguments of type GraphQLTypeModifier and TypeMethodDescriptionprivate <T> void
GraphQLTypeCollectingVisitor.saveIndirectStrongReference
(Supplier<GraphQLType> typeSupplier) -
Uses of GraphQLType in graphql.schema.transform
Fields in graphql.schema.transform with type parameters of type GraphQLTypeModifier and TypeFieldDescriptionprivate final Set
<GraphQLType> FieldVisibilitySchemaTransformation.AdditionalTypeVisibilityVisitor.markedForRemovalTypes
private final Set
<GraphQLType> FieldVisibilitySchemaTransformation.TypeVisibilityVisitor.observedAfterTransform
private final Set
<GraphQLType> FieldVisibilitySchemaTransformation.TypeVisibilityVisitor.observedBeforeTransform
private final Set
<GraphQLType> FieldVisibilitySchemaTransformation.TypeObservingVisitor.observedTypes
private final Set
<GraphQLType> FieldVisibilitySchemaTransformation.FieldRemovalVisitor.removedTypes
Method parameters in graphql.schema.transform with type arguments of type GraphQLTypeModifier and TypeMethodDescriptionprivate GraphQLSchema
FieldVisibilitySchemaTransformation.removeUnreferencedTypes
(Set<GraphQLType> markedForRemovalTypes, GraphQLSchema connectedSchema) Constructor parameters in graphql.schema.transform with type arguments of type GraphQLTypeModifierConstructorDescriptionprivate
AdditionalTypeVisibilityVisitor
(Set<GraphQLType> markedForRemovalTypes) private
FieldRemovalVisitor
(VisibleFieldPredicate visibilityPredicate, Set<GraphQLType> removedTypes) private
TypeObservingVisitor
(Set<GraphQLType> observedTypes) -
Uses of GraphQLType in graphql.schema.validation
Methods in graphql.schema.validation that return GraphQLTypeModifier and TypeMethodDescriptionprivate GraphQLType
NoUnbrokenInputCycles.unwrapNonNull
(GraphQLNonNull type) Methods in graphql.schema.validation with parameters of type GraphQLTypeModifier and TypeMethodDescriptionprivate void
TypeAndFieldRule.assertNonNullType
(GraphQLType type, SchemaValidationErrorCollector errorCollector) private void
InputAndOutputTypesUsedAppropriately.checkTypeContext
(GraphQLType type, SchemaValidationErrorCollector validationErrorCollector, String path, Predicate<GraphQLType> typePredicate, BiFunction<String, String, SchemaValidationError> errorMaker) private String
InputAndOutputTypesUsedAppropriately.getTypeName
(GraphQLType type) Method parameters in graphql.schema.validation with type arguments of type GraphQLTypeModifier and TypeMethodDescriptionprivate void
NoUnbrokenInputCycles.check
(GraphQLInputObjectType type, Set<GraphQLType> seen, List<String> path, SchemaValidationErrorCollector validationErrorCollector) private void
InputAndOutputTypesUsedAppropriately.checkTypeContext
(GraphQLType type, SchemaValidationErrorCollector validationErrorCollector, String path, Predicate<GraphQLType> typePredicate, BiFunction<String, String, SchemaValidationError> errorMaker) -
Uses of GraphQLType in graphql.util
Methods in graphql.util that return GraphQLTypeModifier and TypeMethodDescriptionprivate static GraphQLType
Anonymizer.fromTypeToGraphQLType
(Type type, GraphQLSchema schema) Method parameters in graphql.util with type arguments of type GraphQLTypeModifier and TypeMethodDescriptionprivate static void
Anonymizer.getMatchingFieldDefinitions
(String fieldName, List<? extends GraphQLType> interfaces, Set<GraphQLFieldDefinition> result) -
Uses of GraphQLType in graphql.validation
Methods in graphql.validation with parameters of type GraphQLTypeModifier and TypeMethodDescriptionprivate GraphQLFieldDefinition
TraversalContext.getFieldDef
(GraphQLSchema schema, GraphQLType parentType, Field field) private GraphQLNullableType
TraversalContext.getNullableType
(GraphQLType type) protected void
ArgumentValidationUtil.handleFieldNotValidError
(Value<?> value, GraphQLType type, int index) protected void
ValidationUtil.handleFieldNotValidError
(Value<?> value, GraphQLType type, int index) protected void
ArgumentValidationUtil.handleNullError
(Value<?> value, GraphQLType type) protected void
ValidationUtil.handleNullError
(Value<?> value, GraphQLType type) boolean
ValidationUtil.isValidLiteralValue
(Value<?> value, GraphQLType type, GraphQLSchema schema, GraphQLContext graphQLContext, Locale locale) -
Uses of GraphQLType in graphql.validation.rules
Fields in graphql.validation.rules declared as GraphQLTypeModifier and TypeFieldDescription(package private) final GraphQLType
OverlappingFieldsCanBeMerged.FieldAndType.graphQLType
(package private) final GraphQLType
OverlappingFieldsCanBeMerged.FieldAndType.parentType
Methods in graphql.validation.rules that return GraphQLTypeModifier and TypeMethodDescriptionVariablesTypesMatcher.effectiveType
(GraphQLType variableType, Value<?> defaultValue) private GraphQLType
OverlappingFieldsCanBeMerged.getGraphQLTypeForFragmentDefinition
(FragmentDefinition fragment) private GraphQLType
OverlappingFieldsCanBeMerged.getGraphQLTypeForInlineFragment
(GraphQLType parentType, InlineFragment inlineFragment) Methods in graphql.validation.rules that return types with arguments of type GraphQLTypeModifier and TypeMethodDescriptionprivate List
<? extends GraphQLType> PossibleFragmentSpreads.getPossibleType
(GraphQLType type) Methods in graphql.validation.rules with parameters of type GraphQLTypeModifier and TypeMethodDescriptionprivate boolean
VariablesTypesMatcher.checkType
(GraphQLType actualType, GraphQLType expectedType) private void
OverlappingFieldsCanBeMerged.collectFields
(Map<String, Set<OverlappingFieldsCanBeMerged.FieldAndType>> fieldMap, SelectionSet selectionSet, GraphQLType parentType, Set<String> visitedFragmentSpreads) private void
OverlappingFieldsCanBeMerged.collectFieldsForField
(Map<String, Set<OverlappingFieldsCanBeMerged.FieldAndType>> fieldMap, GraphQLType parentType, Field field) private void
OverlappingFieldsCanBeMerged.collectFieldsForInlineFragment
(Map<String, Set<OverlappingFieldsCanBeMerged.FieldAndType>> fieldMap, Set<String> visitedFragmentSpreads, GraphQLType parentType, InlineFragment inlineFragment) boolean
VariablesTypesMatcher.doesVariableTypesMatch
(GraphQLType varType, Value<?> varDefaultValue, GraphQLType locationType, Value<?> locationDefaultValue) This method and variable naming was inspired from the reference graphql-js implementationprivate boolean
PossibleFragmentSpreads.doTypesOverlap
(GraphQLType type, GraphQLCompositeType parent) VariablesTypesMatcher.effectiveType
(GraphQLType variableType, Value<?> defaultValue) private GraphQLType
OverlappingFieldsCanBeMerged.getGraphQLTypeForInlineFragment
(GraphQLType parentType, InlineFragment inlineFragment) private List
<? extends GraphQLType> PossibleFragmentSpreads.getPossibleType
(GraphQLType type) private boolean
OverlappingFieldsCanBeMerged.isInterfaceOrUnion
(GraphQLType type) private boolean
PossibleFragmentSpreads.isValidTargetCompositeType
(GraphQLType type) Per spec: The target type of fragment (type condition) must have kind UNION, INTERFACE, or OBJECT.OverlappingFieldsCanBeMerged.mkNotSameTypeError
(com.google.common.collect.ImmutableList<String> path, List<Field> fields, GraphQLType typeA, GraphQLType typeB) private boolean
OverlappingFieldsCanBeMerged.sameType
(GraphQLType type1, GraphQLType type2) Constructors in graphql.validation.rules with parameters of type GraphQLTypeModifierConstructorDescriptionFieldAndType
(Field field, GraphQLType graphQLType, GraphQLType parentType)
GraphQLSchema.Builder.additionalType(GraphQLType)
methods