Uses of Interface
graphql.schema.GraphQLNamedOutputType
-
Packages that use GraphQLNamedOutputType Package Description graphql.execution graphql.schema graphql.schema.idl graphql.schema.visitor -
-
Uses of GraphQLNamedOutputType in graphql.execution
Fields in graphql.execution declared as GraphQLNamedOutputType Modifier and Type Field Description private GraphQLNamedOutputType
UnresolvedTypeException. interfaceOrUnionType
Methods in graphql.execution that return GraphQLNamedOutputType Modifier and Type Method Description GraphQLNamedOutputType
UnresolvedTypeException. getInterfaceOrUnionType()
Methods in graphql.execution with parameters of type GraphQLNamedOutputType Modifier and Type Method Description private GraphQLObjectType
ResolveType. resolveAbstractType(TypeResolutionEnvironment env, TypeResolver typeResolver, GraphQLNamedOutputType abstractType)
Constructors in graphql.execution with parameters of type GraphQLNamedOutputType Constructor Description UnresolvedTypeException(GraphQLNamedOutputType interfaceOrUnionType)
UnresolvedTypeException(GraphQLNamedOutputType interfaceOrUnionType, GraphQLType providedType)
UnresolvedTypeException(java.lang.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.schema Modifier and Type Interface Description interface
GraphQLCompositeType
interface
GraphQLFieldsContainer
Types that can contain output fields are marked with this interfaceinterface
GraphQLImplementingType
A GraphQLType which can implement interfacesClasses in graphql.schema that implement GraphQLNamedOutputType Modifier and Type Class Description class
GraphQLEnumType
A graphql enumeration type has a limited set of values.class
GraphQLInterfaceType
In graphql, an interface is an abstract type that defines the set of fields that a type must include to implement that interface.class
GraphQLObjectType
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
GraphQLScalarType
A scalar type is a leaf node in the graphql tree of types.class
GraphQLTypeReference
A special type to allow a object/interface types to reference itself.class
GraphQLUnionType
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 GraphQLNamedOutputType Modifier and Type Field Description private java.util.Map<java.lang.String,GraphQLNamedOutputType>
GraphQLInterfaceType.Builder. interfaces
private java.util.Map<java.lang.String,GraphQLNamedOutputType>
GraphQLObjectType.Builder. interfaces
private com.google.common.collect.ImmutableList<GraphQLNamedOutputType>
GraphQLInterfaceType. originalInterfaces
private com.google.common.collect.ImmutableList<GraphQLNamedOutputType>
GraphQLObjectType. originalInterfaces
private 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 java.util.Map<java.lang.String,GraphQLNamedOutputType>
GraphQLUnionType.Builder. types
Methods in graphql.schema that return types with arguments of type GraphQLNamedOutputType Modifier and Type Method Description java.util.List<GraphQLNamedOutputType>
GraphQLImplementingType. getInterfaces()
java.util.List<GraphQLNamedOutputType>
GraphQLInterfaceType. getInterfaces()
java.util.List<GraphQLNamedOutputType>
GraphQLObjectType. getInterfaces()
java.util.List<GraphQLNamedOutputType>
GraphQLUnionType. getTypes()
Method parameters in graphql.schema with type arguments of type GraphQLNamedOutputType Modifier and Type Method Description (package private) void
GraphQLInterfaceType. replaceInterfaces(java.util.List<GraphQLNamedOutputType> interfaces)
GraphQLObjectType.Builder
GraphQLObjectType.Builder. replaceInterfaces(java.util.List<? extends GraphQLNamedOutputType> interfaces)
(package private) void
GraphQLObjectType. replaceInterfaces(java.util.List<GraphQLNamedOutputType> interfaces)
GraphQLInterfaceType.Builder
GraphQLInterfaceType.Builder. replaceInterfacesOrReferences(java.util.List<? extends GraphQLNamedOutputType> interfacesOrReferences)
GraphQLUnionType.Builder
GraphQLUnionType.Builder. replacePossibleTypes(java.util.List<? extends GraphQLNamedOutputType> types)
(package private) void
GraphQLUnionType. replaceTypes(java.util.List<GraphQLNamedOutputType> types)
Constructor parameters in graphql.schema with type arguments of type GraphQLNamedOutputType Constructor Description GraphQLUnionType(java.lang.String name, java.lang.String description, java.util.List<GraphQLNamedOutputType> types, TypeResolver typeResolver, java.util.List<GraphQLDirective> directives, java.util.List<GraphQLAppliedDirective> appliedDirectives, UnionTypeDefinition definition, java.util.List<UnionTypeExtensionDefinition> extensionDefinitions)
-
Uses of GraphQLNamedOutputType in graphql.schema.idl
Methods in graphql.schema.idl with parameters of type GraphQLNamedOutputType Modifier and Type Method Description (package private) void
SchemaGeneratorHelper.BuildContext. putOutputType(GraphQLNamedOutputType outputType)
-
Uses of GraphQLNamedOutputType in graphql.schema.visitor
Methods in graphql.schema.visitor that return GraphQLNamedOutputType Modifier and Type Method Description GraphQLNamedOutputType
GraphQLSchemaVisitor.FieldDefinitionVisitorEnvironment. getUnwrappedType()
GraphQLNamedOutputType
GraphQLSchemaVisitorAdapter.FieldDefinitionEnv. getUnwrappedType()
-