Uses of Interface
graphql.schema.GraphQLNullableType
-
Packages that use GraphQLNullableType Package Description graphql.schema graphql.schema.impl graphql.validation -
-
Uses of GraphQLNullableType in graphql.schema
Classes in graphql.schema that implement GraphQLNullableType Modifier and Type Class Description classGraphQLEnumTypeA graphql enumeration type has a limited set of values.classGraphQLInputObjectTypegraphql 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.classGraphQLInterfaceTypeIn graphql, an interface is an abstract type that defines the set of fields that a type must include to implement that interface.classGraphQLListA modified type that indicates there is a list of the underlying wrapped type, eg a list of strings or a list of booleans.classGraphQLObjectTypeThis is the work horse type and represents an object with one or more field values that can be retrieved by the graphql system.classGraphQLScalarTypeA scalar type is a leaf node in the graphql tree of types.classGraphQLUnionTypeA union type is a polymorphic type that dynamically represents one of more concrete object types.Methods in graphql.schema with parameters of type GraphQLNullableType Modifier and Type Method Description default TraversalControlGraphQLTypeVisitor. visitGraphQLNullableType(GraphQLNullableType node, TraverserContext<GraphQLSchemaElement> context) -
Uses of GraphQLNullableType in graphql.schema.impl
Methods in graphql.schema.impl with parameters of type GraphQLNullableType Modifier and Type Method Description TraversalControlMultiReadOnlyGraphQLTypeVisitor. visitGraphQLNullableType(GraphQLNullableType node, TraverserContext<GraphQLSchemaElement> context) -
Uses of GraphQLNullableType in graphql.validation
Methods in graphql.validation that return GraphQLNullableType Modifier and Type Method Description private GraphQLNullableTypeTraversalContext. getNullableType(GraphQLType type)
-