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 GraphQLNamedOutputTypeUnresolvedTypeException. interfaceOrUnionTypeMethods in graphql.execution that return GraphQLNamedOutputType Modifier and Type Method Description GraphQLNamedOutputTypeUnresolvedTypeException. getInterfaceOrUnionType()Methods in graphql.execution with parameters of type GraphQLNamedOutputType Modifier and Type Method Description private GraphQLObjectTypeResolveType. 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 interfaceGraphQLCompositeTypeinterfaceGraphQLFieldsContainerTypes that can contain output fields are marked with this interfaceinterfaceGraphQLImplementingTypeA GraphQLType which can implement interfacesClasses in graphql.schema that implement GraphQLNamedOutputType Modifier and Type Class Description classGraphQLEnumTypeA graphql enumeration type has a limited set of values.classGraphQLInterfaceTypeIn graphql, an interface is an abstract type that defines the set of fields that a type must include to implement that interface.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.classGraphQLTypeReferenceA special type to allow a object/interface types to reference itself.classGraphQLUnionTypeA 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. interfacesprivate java.util.Map<java.lang.String,GraphQLNamedOutputType>GraphQLObjectType.Builder. interfacesprivate com.google.common.collect.ImmutableList<GraphQLNamedOutputType>GraphQLInterfaceType. originalInterfacesprivate com.google.common.collect.ImmutableList<GraphQLNamedOutputType>GraphQLObjectType. originalInterfacesprivate com.google.common.collect.ImmutableList<GraphQLNamedOutputType>GraphQLUnionType. originalTypesprivate com.google.common.collect.ImmutableList<GraphQLNamedOutputType>GraphQLInterfaceType. replacedInterfacesprivate com.google.common.collect.ImmutableList<GraphQLNamedOutputType>GraphQLObjectType. replacedInterfacesprivate com.google.common.collect.ImmutableList<GraphQLNamedOutputType>GraphQLUnionType. replacedTypesprivate java.util.Map<java.lang.String,GraphQLNamedOutputType>GraphQLUnionType.Builder. typesMethods 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) voidGraphQLInterfaceType. replaceInterfaces(java.util.List<GraphQLNamedOutputType> interfaces)GraphQLObjectType.BuilderGraphQLObjectType.Builder. replaceInterfaces(java.util.List<? extends GraphQLNamedOutputType> interfaces)(package private) voidGraphQLObjectType. replaceInterfaces(java.util.List<GraphQLNamedOutputType> interfaces)GraphQLInterfaceType.BuilderGraphQLInterfaceType.Builder. replaceInterfacesOrReferences(java.util.List<? extends GraphQLNamedOutputType> interfacesOrReferences)GraphQLUnionType.BuilderGraphQLUnionType.Builder. replacePossibleTypes(java.util.List<? extends GraphQLNamedOutputType> types)(package private) voidGraphQLUnionType. 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) voidSchemaGeneratorHelper.BuildContext. putOutputType(GraphQLNamedOutputType outputType) -
Uses of GraphQLNamedOutputType in graphql.schema.visitor
Methods in graphql.schema.visitor that return GraphQLNamedOutputType Modifier and Type Method Description GraphQLNamedOutputTypeGraphQLSchemaVisitor.FieldDefinitionVisitorEnvironment. getUnwrappedType()GraphQLNamedOutputTypeGraphQLSchemaVisitorAdapter.FieldDefinitionEnv. getUnwrappedType()
-