Uses of Interface
graphql.language.Type
Packages that use Type
Package
Description
-
Uses of Type in graphql.execution
Methods in graphql.execution with parameters of type TypeModifier and TypeMethodDescriptionstatic GraphQLTypeTypeFromAST.getTypeFromAST(GraphQLSchema schema, Type type) -
Uses of Type in graphql.language
Classes in graphql.language with type parameters of type TypeClasses in graphql.language that implement TypeMethods in graphql.language that return TypeModifier and TypeMethodDescriptionFieldDefinition.getType()InputValueDefinition.getType()ListType.getType()NonNullType.getType()VariableDefinition.getType()Methods in graphql.language that return types with arguments of type TypeModifier and TypeMethodDescriptionImplementingTypeDefinition.getImplements()InterfaceTypeDefinition.getImplements()ObjectTypeDefinition.getImplements()UnionTypeDefinition.getMemberTypes()Methods in graphql.language with parameters of type TypeModifier and TypeMethodDescriptionInterfaceTypeDefinition.Builder.implementz(Type implement) InterfaceTypeExtensionDefinition.Builder.implementz(Type implementz) ObjectTypeDefinition.Builder.implementz(Type implement) ObjectTypeExtensionDefinition.Builder.implementz(Type implement) UnionTypeDefinition.Builder.memberType(Type memberType) UnionTypeExtensionDefinition.Builder.memberType(Type memberType) static ListType.BuilderListType.newListType(Type type) static NonNullType.BuilderNonNullType.newNonNullType(Type type) static VariableDefinition.BuilderVariableDefinition.newVariableDefinition(String name, Type type) static VariableDefinition.BuilderVariableDefinition.newVariableDefinition(String name, Type type, Value defaultValue) protected TraversalControlNodeVisitorStub.visitType(Type<?> node, TraverserContext<Node> context) Method parameters in graphql.language with type arguments of type TypeModifier and TypeMethodDescriptionInterfaceTypeDefinition.Builder.implementz(List<Type> implementz) InterfaceTypeExtensionDefinition.Builder.implementz(List<Type> implementz) ObjectTypeDefinition.Builder.implementz(List<Type> implementz) ObjectTypeExtensionDefinition.Builder.implementz(List<Type> implementz) UnionTypeDefinition.Builder.memberTypes(List<Type> memberTypes) UnionTypeExtensionDefinition.Builder.memberTypes(List<Type> memberTypes) Constructors in graphql.language with parameters of type TypeModifierConstructorDescriptionFieldDefinition(String name, Type type) protectedFieldDefinition(String name, Type type, List<InputValueDefinition> inputValueDefinitions, List<Directive> directives, Description description, SourceLocation sourceLocation, List<Comment> comments, IgnoredChars ignoredChars, Map<String, String> additionalData) InputValueDefinition(String name, Type type) alternative to using a Builder for convenienceInputValueDefinition(String name, Type type, Value defaultValue) alternative to using a Builder for convenienceprotectedInputValueDefinition(String name, Type type, Value defaultValue, List<Directive> directives, Description description, SourceLocation sourceLocation, List<Comment> comments, IgnoredChars ignoredChars, Map<String, String> additionalData) alternative to using a Builder for convenienceprotectedListType(Type type, SourceLocation sourceLocation, List<Comment> comments, IgnoredChars ignoredChars, Map<String, String> additionalData) NonNullType(Type type) alternative to using a Builder for convenienceprotectedNonNullType(Type type, SourceLocation sourceLocation, List<Comment> comments, IgnoredChars ignoredChars, Map<String, String> additionalData) VariableDefinition(String name, Type type) alternative to using a Builder for convenienceVariableDefinition(String name, Type type, Value defaultValue) alternative to using a Builder for convenienceprotectedVariableDefinition(String name, Type type, Value defaultValue, List<Directive> directives, SourceLocation sourceLocation, List<Comment> comments, IgnoredChars ignoredChars, Map<String, String> additionalData) Constructor parameters in graphql.language with type arguments of type TypeModifierConstructorDescriptionprotectedInterfaceTypeDefinition(String name, List<Type> implementz, List<FieldDefinition> definitions, List<Directive> directives, Description description, SourceLocation sourceLocation, List<Comment> comments, IgnoredChars ignoredChars, Map<String, String> additionalData) protectedInterfaceTypeExtensionDefinition(String name, List<Type> implementz, List<FieldDefinition> definitions, List<Directive> directives, Description description, SourceLocation sourceLocation, List<Comment> comments, IgnoredChars ignoredChars, Map<String, String> additionalData) protectedObjectTypeDefinition(String name, List<Type> implementz, List<Directive> directives, List<FieldDefinition> fieldDefinitions, Description description, SourceLocation sourceLocation, List<Comment> comments, IgnoredChars ignoredChars, Map<String, String> additionalData) protectedObjectTypeExtensionDefinition(String name, List<Type> implementz, List<Directive> directives, List<FieldDefinition> fieldDefinitions, Description description, SourceLocation sourceLocation, List<Comment> comments, IgnoredChars ignoredChars, Map<String, String> additionalData) -
Uses of Type in graphql.parser
Methods in graphql.parser that return TypeModifier and TypeMethodDescriptionprotected TypeGraphqlAntlrToLanguage.createType(GraphqlParser.TypeContext ctx) static Type<?> Parses a string input into a graphql AST Type -
Uses of Type in graphql.schema.idl
Methods in graphql.schema.idl that return TypeModifier and TypeMethodDescriptionTypeInfo.getRawType()static TypeUnwraps one layer of the type or just returns the type again if it's not a wrapped typeTypeInfo.unwrapOneType()Methods in graphql.schema.idl that return types with arguments of type TypeModifier and TypeMethodDescriptionFunction<Type<?>, GraphQLInputType> SchemaGeneratorHelper.inputTypeFactory(graphql.schema.idl.SchemaGeneratorHelper.BuildContext buildCtx) Methods in graphql.schema.idl with parameters of type TypeModifier and TypeMethodDescriptionstatic StringTypeInfo.getAstDesc(Type type) <T extends TypeDefinition>
Optional<T> booleanTypeDefinitionRegistry.isInterfaceOrUnion(Type type) Returns true if the specified type exists in the registry and is an abstract (Interface or Union) typestatic booleanReturnstrueif the provided type is a list type, otherwise returnsfalse.static booleanReturnstrueif the provided type is a non null type, otherwise returnsfalse.booleanTypeDefinitionRegistry.isObjectType(Type type) Returns true if the specified type exists in the registry and is an object typebooleanTypeDefinitionRegistry.isObjectTypeOrInterface(Type type) Returns true if the specified type exists in the registry and is an object type or interfacebooleanTypeDefinitionRegistry.isPossibleType(Type abstractType, Type possibleType) Returns true of the abstract type is in implemented by the object type or interfacebooleanTypeDefinitionRegistry.isSubTypeOf(Type maybeSubType, Type superType) Returns true if the maybe type is either equal or a subset of the second super type (covariant).static booleanReturnstrueif the given type is a non null or list type, that is a wrapped type, otherwise returnsfalse.static StringTypeUtil.simplePrint(Type type) This will return the type in graphql SDL format, eg [typeName!]!static TypeInfostatic TypeNameUnwraps all layers of the type or just returns the type again if it's not a wrapped typestatic TypeUnwraps one layer of the type or just returns the type again if it's not a wrapped type -
Uses of Type in graphql.schema.idl.errors
Constructors in graphql.schema.idl.errors with parameters of type TypeModifierConstructorDescriptionNotAnInputTypeError(Type rawType, TypeDefinition typeDefinition) NotAnOutputTypeError(Type rawType, TypeDefinition typeDefinition) -
Uses of Type in graphql.validation
Methods in graphql.validation with parameters of type Type