Uses of Class
graphql.language.DirectiveDefinition
Packages that use DirectiveDefinition
Package
Description
-
Uses of DirectiveDefinition in graphql
Fields in graphql declared as DirectiveDefinitionModifier and TypeFieldDescriptionstatic final DirectiveDefinitionDirectives.DEPRECATED_DIRECTIVE_DEFINITIONstatic final DirectiveDefinitionDirectives.ONE_OF_DIRECTIVE_DEFINITIONstatic final DirectiveDefinitionDirectives.SPECIFIED_BY_DIRECTIVE_DEFINITION -
Uses of DirectiveDefinition in graphql.introspection
Methods in graphql.introspection that return DirectiveDefinitionModifier and TypeMethodDescriptionprivate DirectiveDefinitionIntrospectionResultToSchema.createDirective(Map<String, Object> input) -
Uses of DirectiveDefinition in graphql.language
Subclasses with type arguments of type DirectiveDefinition in graphql.languageClasses in graphql.language that implement interfaces with type arguments of type DirectiveDefinitionMethods in graphql.language that return DirectiveDefinitionModifier and TypeMethodDescriptionDirectiveDefinition.Builder.build()DirectiveDefinition.deepCopy()DirectiveDefinition.transform(Consumer<DirectiveDefinition.Builder> builderConsumer) DirectiveDefinition.withNewChildren(NodeChildrenContainer newChildren) Methods in graphql.language that return types with arguments of type DirectiveDefinitionModifier and TypeMethodDescriptionAstPrinter.directiveDefinition()PrettyAstPrinter.directiveDefinition()Methods in graphql.language with parameters of type DirectiveDefinitionModifier and TypeMethodDescriptionNodeVisitor.visitDirectiveDefinition(DirectiveDefinition node, TraverserContext<Node> data) NodeVisitorStub.visitDirectiveDefinition(DirectiveDefinition node, TraverserContext<Node> context) Constructors in graphql.language with parameters of type DirectiveDefinition -
Uses of DirectiveDefinition in graphql.parser
Methods in graphql.parser that return DirectiveDefinitionModifier and TypeMethodDescriptionprotected DirectiveDefinitionGraphqlAntlrToLanguage.createDirectiveDefinition(GraphqlParser.DirectiveDefinitionContext ctx) -
Uses of DirectiveDefinition in graphql.schema
Fields in graphql.schema declared as DirectiveDefinitionModifier and TypeFieldDescriptionprivate DirectiveDefinitionGraphQLDirective.Builder.definitionprivate final DirectiveDefinitionGraphQLDirective.definitionMethods in graphql.schema that return DirectiveDefinitionMethods in graphql.schema with parameters of type DirectiveDefinitionModifier and TypeMethodDescriptionGraphQLDirective.Builder.definition(DirectiveDefinition definition) Constructors in graphql.schema with parameters of type DirectiveDefinitionModifierConstructorDescriptionprivateGraphQLDirective(String name, String description, boolean repeatable, EnumSet<Introspection.DirectiveLocation> locations, List<GraphQLArgument> arguments, DirectiveDefinition definition) -
Uses of DirectiveDefinition in graphql.schema.idl
Fields in graphql.schema.idl with type parameters of type DirectiveDefinitionModifier and TypeFieldDescriptionprivate final Map<String, DirectiveDefinition> TypeDefinitionRegistry.directiveDefinitionsMethods in graphql.schema.idl with type parameters of type DirectiveDefinitionMethods in graphql.schema.idl that return types with arguments of type DirectiveDefinitionModifier and TypeMethodDescriptionTypeDefinitionRegistry.getDirectiveDefinition(String directiveName) TypeDefinitionRegistry.getDirectiveDefinitions()Methods in graphql.schema.idl with parameters of type DirectiveDefinitionModifier and TypeMethodDescription(package private) static GraphQLDirectiveSchemaGeneratorAppliedDirectiveHelper.buildDirectiveDefinitionFromAst(SchemaGeneratorHelper.BuildContext buildCtx, DirectiveDefinition directiveDefinition, Function<Type<?>, GraphQLInputType> inputTypeFactory) private static List<Introspection.DirectiveLocation> SchemaGeneratorAppliedDirectiveHelper.buildLocations(DirectiveDefinition directiveDefinition) private voidSchemaTypeDirectivesChecker.checkDirectiveArguments(List<GraphQLError> errors, TypeDefinitionRegistry typeRegistry, Node element, String elementName, Directive directive, DirectiveDefinition directiveDefinition) private GraphQLErrorTypeDefinitionRegistry.handleReDefinition(DirectiveDefinition oldEntry, DirectiveDefinition newEntry) private booleanSchemaTypeDirectivesChecker.inRightLocation(Introspection.DirectiveLocation expectedLocation, DirectiveDefinition directiveDefinition) Method parameters in graphql.schema.idl with type arguments of type DirectiveDefinitionModifier and TypeMethodDescriptionprivate voidSchemaTypeExtensionsChecker.checkEnumTypeExtensions(List<GraphQLError> errors, TypeDefinitionRegistry typeRegistry, Map<String, DirectiveDefinition> directiveDefinitionMap) private voidSchemaTypeChecker.checkEnumValues(List<GraphQLError> errors, EnumTypeDefinition enumType, List<EnumValueDefinition> enumValueDefinitions, Map<String, DirectiveDefinition> directiveDefinitionMap) private voidSchemaTypeExtensionsChecker.checkInputObjectTypeExtensions(List<GraphQLError> errors, TypeDefinitionRegistry typeRegistry, Map<String, DirectiveDefinition> directiveDefinitionMap) private voidSchemaTypeChecker.checkInputValues(List<GraphQLError> errors, InputObjectTypeDefinition inputType, List<InputValueDefinition> inputValueDefinitions, Introspection.DirectiveLocation directiveLocation, Map<String, DirectiveDefinition> directiveDefinitionMap) private voidSchemaTypeChecker.checkInterfaceFields(List<GraphQLError> errors, InterfaceTypeDefinition interfaceType, List<FieldDefinition> fieldDefinitions, Map<String, DirectiveDefinition> directiveDefinitionMap) private voidSchemaTypeExtensionsChecker.checkInterfaceTypeExtensions(List<GraphQLError> errors, TypeDefinitionRegistry typeRegistry, Map<String, DirectiveDefinition> directiveDefinitionMap) private voidSchemaTypeExtensionsChecker.checkObjectTypeExtensions(List<GraphQLError> errors, TypeDefinitionRegistry typeRegistry, Map<String, DirectiveDefinition> directiveDefinitionMap) private voidSchemaTypeChecker.checkObjTypeFields(List<GraphQLError> errors, ObjectTypeDefinition typeDefinition, List<FieldDefinition> fieldDefinitions, Map<String, DirectiveDefinition> directiveDefinitionMap) private voidSchemaTypeExtensionsChecker.checkScalarTypeExtensions(List<GraphQLError> errors, TypeDefinitionRegistry typeRegistry, Map<String, DirectiveDefinition> directiveDefinitionMap) private voidSchemaTypeExtensionsChecker.checkUnionTypeExtensions(List<GraphQLError> errors, TypeDefinitionRegistry typeRegistry, Map<String, DirectiveDefinition> directiveDefinitionMap) private voidSchemaTypeDirectivesChecker.commonCheck(Collection<DirectiveDefinition> directiveDefinitions, List<GraphQLError> errors) -
Uses of DirectiveDefinition in graphql.schema.idl.errors
Constructors in graphql.schema.idl.errors with parameters of type DirectiveDefinitionModifierConstructorDescriptionDirectiveIllegalLocationError(DirectiveDefinition element, String locationName) DirectiveIllegalReferenceError(DirectiveDefinition directive, NamedNode location) DirectiveRedefinitionError(DirectiveDefinition newEntry, DirectiveDefinition oldEntry) NonUniqueNameError(DirectiveDefinition typeDefinition, InputValueDefinition inputValueDefinition)