Uses of Interface
graphql.schema.GraphQLNamedOutputType
Packages that use GraphQLNamedOutputType
-
Uses of GraphQLNamedOutputType in graphql.execution
Fields in graphql.execution declared as GraphQLNamedOutputTypeModifier and TypeFieldDescriptionprivate final GraphQLNamedOutputType
UnresolvedTypeException.interfaceOrUnionType
Methods in graphql.execution that return GraphQLNamedOutputTypeMethods in graphql.execution with parameters of type GraphQLNamedOutputTypeModifier and TypeMethodDescriptionprivate GraphQLObjectType
ResolveType.resolveAbstractType
(TypeResolutionEnvironment env, TypeResolver typeResolver, GraphQLNamedOutputType abstractType) Constructors in graphql.execution with parameters of type GraphQLNamedOutputTypeModifierConstructorDescriptionUnresolvedTypeException
(GraphQLNamedOutputType interfaceOrUnionType) UnresolvedTypeException
(GraphQLNamedOutputType interfaceOrUnionType, GraphQLType providedType) UnresolvedTypeException
(String message, GraphQLNamedOutputType interfaceOrUnionType) Constructor to use a custom error message for an error that happened during type resolution. -
Uses of GraphQLNamedOutputType in graphql.schema
Subinterfaces of GraphQLNamedOutputType in graphql.schemaModifier and TypeInterfaceDescriptioninterface
interface
Types that can contain output fields are marked with this interfaceinterface
A GraphQLType which can implement interfacesClasses in graphql.schema that implement GraphQLNamedOutputTypeModifier and TypeClassDescriptionclass
A graphql enumeration type has a limited set of values.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
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 with type parameters of type GraphQLNamedOutputTypeModifier and TypeFieldDescriptionprivate final Map
<String, GraphQLNamedOutputType> GraphQLInterfaceType.Builder.interfaces
private final Map
<String, GraphQLNamedOutputType> GraphQLObjectType.Builder.interfaces
private final com.google.common.collect.ImmutableList
<GraphQLNamedOutputType> GraphQLInterfaceType.originalInterfaces
private final com.google.common.collect.ImmutableList
<GraphQLNamedOutputType> GraphQLObjectType.originalInterfaces
private final com.google.common.collect.ImmutableList
<GraphQLNamedOutputType> GraphQLUnionType.originalTypes
private com.google.common.collect.ImmutableList
<GraphQLNamedOutputType> GraphQLInterfaceType.replacedInterfaces
private com.google.common.collect.ImmutableList
<GraphQLNamedOutputType> GraphQLObjectType.replacedInterfaces
private com.google.common.collect.ImmutableList
<GraphQLNamedOutputType> GraphQLUnionType.replacedTypes
private final Map
<String, GraphQLNamedOutputType> GraphQLUnionType.Builder.types
Methods in graphql.schema that return types with arguments of type GraphQLNamedOutputTypeModifier and TypeMethodDescriptionGraphQLImplementingType.getInterfaces()
GraphQLInterfaceType.getInterfaces()
GraphQLObjectType.getInterfaces()
GraphQLUnionType.getTypes()
Method parameters in graphql.schema with type arguments of type GraphQLNamedOutputTypeModifier and TypeMethodDescription(package private) void
GraphQLInterfaceType.replaceInterfaces
(List<GraphQLNamedOutputType> interfaces) GraphQLObjectType.Builder.replaceInterfaces
(List<? extends GraphQLNamedOutputType> interfaces) (package private) void
GraphQLObjectType.replaceInterfaces
(List<GraphQLNamedOutputType> interfaces) GraphQLInterfaceType.Builder.replaceInterfacesOrReferences
(List<? extends GraphQLNamedOutputType> interfacesOrReferences) GraphQLUnionType.Builder.replacePossibleTypes
(List<? extends GraphQLNamedOutputType> types) (package private) void
GraphQLUnionType.replaceTypes
(List<GraphQLNamedOutputType> types) Constructor parameters in graphql.schema with type arguments of type GraphQLNamedOutputTypeModifierConstructorDescriptionprivate
GraphQLUnionType
(String name, String description, List<GraphQLNamedOutputType> types, TypeResolver typeResolver, List<GraphQLDirective> directives, List<GraphQLAppliedDirective> appliedDirectives, UnionTypeDefinition definition, List<UnionTypeExtensionDefinition> extensionDefinitions) -
Uses of GraphQLNamedOutputType in graphql.schema.idl
Methods in graphql.schema.idl with parameters of type GraphQLNamedOutputTypeModifier and TypeMethodDescription(package private) void
SchemaGeneratorHelper.BuildContext.putOutputType
(GraphQLNamedOutputType outputType) -
Uses of GraphQLNamedOutputType in graphql.schema.visitor
Methods in graphql.schema.visitor that return GraphQLNamedOutputTypeModifier and TypeMethodDescriptionGraphQLSchemaVisitor.FieldDefinitionVisitorEnvironment.getUnwrappedType()
GraphQLSchemaVisitorAdapter.FieldDefinitionEnv.getUnwrappedType()