Uses of Class
graphql.schema.GraphQLAppliedDirective
Packages that use GraphQLAppliedDirective
Package
Description
-
Uses of GraphQLAppliedDirective in graphql
Fields in graphql with type parameters of type GraphQLAppliedDirectiveModifier and TypeFieldDescriptionprivate final List
<GraphQLAppliedDirective> DirectivesUtil.DirectivesHolder.allAppliedDirectives
private final com.google.common.collect.ImmutableMap
<String, List<GraphQLAppliedDirective>> DirectivesUtil.DirectivesHolder.allAppliedDirectivesByName
Methods in graphql that return GraphQLAppliedDirectiveModifier and TypeMethodDescriptionDirectivesUtil.DirectivesHolder.getAppliedDirective
(String directiveName) Methods in graphql that return types with arguments of type GraphQLAppliedDirectiveModifier and TypeMethodDescriptioncom.google.common.collect.ImmutableMap
<String, List<GraphQLAppliedDirective>> DirectivesUtil.DirectivesHolder.getAllAppliedDirectivesByName()
DirectivesUtil.DirectivesHolder.getAppliedDirectives()
DirectivesUtil.DirectivesHolder.getAppliedDirectives
(String directiveName) static List
<GraphQLAppliedDirective> DirectivesUtil.toAppliedDirectives
(GraphQLDirectiveContainer directiveContainer) This can take a collection of legacy directives and turn them applied directives, and combine them with any applied directives.static List
<GraphQLAppliedDirective> DirectivesUtil.toAppliedDirectives
(Collection<GraphQLAppliedDirective> appliedDirectives, Collection<GraphQLDirective> directives) This can take a collection of legacy directives and turn them applied directives, and combine them with any applied directives.Method parameters in graphql with type arguments of type GraphQLAppliedDirectiveModifier and TypeMethodDescriptionstatic List
<GraphQLAppliedDirective> DirectivesUtil.toAppliedDirectives
(Collection<GraphQLAppliedDirective> appliedDirectives, Collection<GraphQLDirective> directives) This can take a collection of legacy directives and turn them applied directives, and combine them with any applied directives. -
Uses of GraphQLAppliedDirective in graphql.introspection
Methods in graphql.introspection that return types with arguments of type GraphQLAppliedDirectiveModifier and TypeMethodDescriptionprivate List
<GraphQLAppliedDirective> IntrospectionWithDirectivesSupport.filterAppliedDirectives
(GraphQLSchema schema, boolean isDefinedDirective, GraphQLDirectiveContainer container, List<GraphQLAppliedDirective> directives) Method parameters in graphql.introspection with type arguments of type GraphQLAppliedDirectiveModifier and TypeMethodDescriptionprivate List
<GraphQLAppliedDirective> IntrospectionWithDirectivesSupport.filterAppliedDirectives
(GraphQLSchema schema, boolean isDefinedDirective, GraphQLDirectiveContainer container, List<GraphQLAppliedDirective> directives) -
Uses of GraphQLAppliedDirective in graphql.schema
Fields in graphql.schema with type parameters of type GraphQLAppliedDirectiveModifier and TypeFieldDescriptionprotected final List
<GraphQLAppliedDirective> GraphqlDirectivesContainerTypeBuilder.appliedDirectives
private final List
<GraphQLAppliedDirective> GraphQLSchema.Builder.schemaAppliedDirectives
(package private) Set
<GraphQLAppliedDirective> SchemaTransformer.DummyRoot.schemaAppliedDirectives
Methods in graphql.schema that return GraphQLAppliedDirectiveModifier and TypeMethodDescriptionGraphQLAppliedDirective.Builder.build()
GraphQLArgument.getAppliedDirective
(String directiveName) GraphQLDirectiveContainer.getAppliedDirective
(String directiveName) Returns a non-repeatable directive with the provided name.GraphQLEnumType.getAppliedDirective
(String directiveName) GraphQLEnumValueDefinition.getAppliedDirective
(String directiveName) GraphQLFieldDefinition.getAppliedDirective
(String directiveName) GraphQLInputObjectField.getAppliedDirective
(String directiveName) GraphQLInputObjectType.getAppliedDirective
(String directiveName) GraphQLInterfaceType.getAppliedDirective
(String directiveName) GraphQLObjectType.getAppliedDirective
(String directiveName) GraphQLScalarType.getAppliedDirective
(String directiveName) GraphQLUnionType.getAppliedDirective
(String directiveName) GraphQLSchema.getSchemaAppliedDirective
(String directiveName) This returns the named directive that have been explicitly applied to the schema object.private static GraphQLAppliedDirective[]
GraphQLSchema.schemaAppliedDirectivesArray
(GraphQLSchema existingSchema) GraphQLDirective.toAppliedDirective()
This method can be used to turn a directive that was being use as an applied directive into one.GraphQLAppliedDirective.transform
(Consumer<GraphQLAppliedDirective.Builder> builderConsumer) This helps you transform the current GraphQLDirective into another one by starting a builder with all the current values and allows you to transform it how you want.GraphQLAppliedDirective.withNewChildren
(SchemaElementChildrenContainer newChildren) Methods in graphql.schema that return types with arguments of type GraphQLAppliedDirectiveModifier and TypeMethodDescriptionGraphQLArgument.getAllAppliedDirectivesByName()
GraphQLDirectiveContainer.getAllAppliedDirectivesByName()
This will return a Map of the all directives that are associated with aGraphQLNamedSchemaElement
, including both repeatable and non-repeatable directives.GraphQLEnumType.getAllAppliedDirectivesByName()
GraphQLEnumValueDefinition.getAllAppliedDirectivesByName()
GraphQLFieldDefinition.getAllAppliedDirectivesByName()
GraphQLInputObjectField.getAllAppliedDirectivesByName()
GraphQLInputObjectType.getAllAppliedDirectivesByName()
GraphQLInterfaceType.getAllAppliedDirectivesByName()
GraphQLObjectType.getAllAppliedDirectivesByName()
GraphQLScalarType.getAllAppliedDirectivesByName()
GraphQLUnionType.getAllAppliedDirectivesByName()
GraphQLSchema.getAllSchemaAppliedDirectivesByName()
This returns a map of non-repeatable and repeatable directives that have been explicitly applied to the schema object.GraphQLArgument.getAppliedDirectives()
GraphQLDirectiveContainer.getAppliedDirectives()
This will return a list of all the directives that have been put onGraphQLNamedSchemaElement
as a flat list, which may contain repeatable and non-repeatable directives.default List
<GraphQLAppliedDirective> GraphQLDirectiveContainer.getAppliedDirectives
(String directiveName) Returns all of the directives with the provided name, including repeatable and non repeatable directives.GraphQLEnumType.getAppliedDirectives()
GraphQLEnumValueDefinition.getAppliedDirectives()
GraphQLFieldDefinition.getAppliedDirectives()
GraphQLInputObjectField.getAppliedDirectives()
GraphQLInputObjectType.getAppliedDirectives()
GraphQLInterfaceType.getAppliedDirectives()
GraphQLObjectType.getAppliedDirectives()
GraphQLScalarType.getAppliedDirectives()
GraphQLUnionType.getAppliedDirectives()
GraphQLSchema.getSchemaAppliedDirectives()
This returns the list of directives that have been explicitly applied to the schema object.GraphQLSchema.getSchemaAppliedDirectives
(String directiveName) Methods in graphql.schema with parameters of type GraphQLAppliedDirectiveModifier and TypeMethodDescriptionGraphQLAppliedDirective.newDirective
(GraphQLAppliedDirective existing) default TraversalControl
GraphQLTypeVisitor.visitGraphQLAppliedDirective
(GraphQLAppliedDirective node, TraverserContext<GraphQLSchemaElement> context) This method will be called when a directive is applied to a schema element.GraphQLTypeVisitorStub.visitGraphQLAppliedDirective
(GraphQLAppliedDirective node, TraverserContext<GraphQLSchemaElement> context) GraphqlDirectivesContainerTypeBuilder.withAppliedDirective
(GraphQLAppliedDirective directive) GraphqlDirectivesContainerTypeBuilder.withAppliedDirectives
(GraphQLAppliedDirective... directives) GraphQLSchema.Builder.withSchemaAppliedDirective
(GraphQLAppliedDirective appliedDirective) GraphQLSchema.Builder.withSchemaAppliedDirectives
(GraphQLAppliedDirective... appliedDirectives) Method parameters in graphql.schema with type arguments of type GraphQLAppliedDirectiveModifier and TypeMethodDescriptionGraphqlDirectivesContainerTypeBuilder.replaceAppliedDirectives
(List<GraphQLAppliedDirective> directives) GraphQLSchema.Builder.withSchemaAppliedDirectives
(Collection<? extends GraphQLAppliedDirective> appliedDirectives) Constructors in graphql.schema with parameters of type GraphQLAppliedDirective -
Uses of GraphQLAppliedDirective in graphql.schema.idl
Fields in graphql.schema.idl declared as GraphQLAppliedDirectiveModifier and TypeFieldDescriptionprivate final GraphQLAppliedDirective
SchemaDirectiveWiringEnvironmentImpl.registeredAppliedDirective
Fields in graphql.schema.idl with type parameters of type GraphQLAppliedDirectiveModifier and TypeFieldDescriptionprivate final List
<GraphQLAppliedDirective> FieldWiringEnvironment.appliedDirectives
private final Map
<String, GraphQLAppliedDirective> SchemaDirectiveWiringEnvironmentImpl.appliedDirectives
Methods in graphql.schema.idl that return GraphQLAppliedDirectiveModifier and TypeMethodDescriptionSchemaDirectiveWiringEnvironment.getAppliedDirective()
This returns the applied directive that theSchemaDirectiveWiring
was registered against during calls toRuntimeWiring.Builder.directive(String, SchemaDirectiveWiring)
SchemaDirectiveWiringEnvironment.getAppliedDirective
(String directiveName) Returns a named applied directive or nullSchemaDirectiveWiringEnvironmentImpl.getAppliedDirective()
SchemaDirectiveWiringEnvironmentImpl.getAppliedDirective
(String directiveName) Methods in graphql.schema.idl that return types with arguments of type GraphQLAppliedDirectiveModifier and TypeMethodDescriptionprivate List
<GraphQLAppliedDirective> SchemaPrinter.addDeprecatedDirectiveIfNeeded
(GraphQLDirectiveContainer directiveContainer) private static Pair
<GraphQLDirective, GraphQLAppliedDirective> SchemaGeneratorAppliedDirectiveHelper.buildAppliedDirective
(SchemaGeneratorHelper.BuildContext buildCtx, Function<Type<?>, GraphQLInputType> inputTypeFactory, Directive directive, Set<GraphQLDirective> directiveDefinitions, Introspection.DirectiveLocation directiveLocation, GraphqlTypeComparatorRegistry comparatorRegistry) (package private) static Pair
<List<GraphQLDirective>, List<GraphQLAppliedDirective>> SchemaGeneratorAppliedDirectiveHelper.buildAppliedDirectives
(SchemaGeneratorHelper.BuildContext buildCtx, Function<Type<?>, GraphQLInputType> inputTypeFactory, List<Directive> directives, List<Directive> extensionDirectives, Introspection.DirectiveLocation directiveLocation, Set<GraphQLDirective> runtimeDirectives, GraphqlTypeComparatorRegistry comparatorRegistry) FieldWiringEnvironment.getAppliedDirectives()
SchemaDirectiveWiringEnvironment.getAppliedDirectives()
SchemaDirectiveWiringEnvironmentImpl.getAppliedDirectives()
Methods in graphql.schema.idl with parameters of type GraphQLAppliedDirectiveModifier and TypeMethodDescriptionSchemaGeneratorDirectiveHelper.EnvBuilder.apply
(T outputElement, List<GraphQLDirective> allDirectives, List<GraphQLAppliedDirective> allAppliedDirectives, GraphQLAppliedDirective registeredAppliedDirective, GraphQLDirective registeredDirective) private String
SchemaPrinter.directiveString
(GraphQLAppliedDirective directive) private boolean
SchemaPrinter.isDeprecatedDirective
(GraphQLAppliedDirective directive) Method parameters in graphql.schema.idl with type arguments of type GraphQLAppliedDirectiveModifier and TypeMethodDescription(package private) static void
SchemaGeneratorAppliedDirectiveHelper.buildAppliedDirectives
(SchemaGeneratorHelper.BuildContext buildCtx, GraphqlDirectivesContainerTypeBuilder<?, ?> builder, Pair<List<GraphQLDirective>, List<GraphQLAppliedDirective>> appliedDirectives) private String
SchemaPrinter.directivesString
(Class<? extends GraphQLSchemaElement> parentType, List<GraphQLAppliedDirective> directives) private boolean
SchemaPrinter.hasDeprecatedDirective
(List<GraphQLAppliedDirective> directives) Constructors in graphql.schema.idl with parameters of type GraphQLAppliedDirectiveModifierConstructorDescriptionSchemaDirectiveWiringEnvironmentImpl
(T element, List<GraphQLDirective> directives, List<GraphQLAppliedDirective> appliedDirectives, GraphQLAppliedDirective registeredAppliedDirective, GraphQLDirective registeredDirective, SchemaGeneratorDirectiveHelper.Parameters parameters) -
Uses of GraphQLAppliedDirective in graphql.schema.impl
Methods in graphql.schema.impl with parameters of type GraphQLAppliedDirectiveModifier and TypeMethodDescriptionMultiReadOnlyGraphQLTypeVisitor.visitGraphQLAppliedDirective
(GraphQLAppliedDirective node, TraverserContext<GraphQLSchemaElement> context) -
Uses of GraphQLAppliedDirective in graphql.schema.visitor
Methods in graphql.schema.visitor that return GraphQLAppliedDirectiveModifier and TypeMethodDescriptionGraphQLSchemaVisitor.AppliedDirectiveArgumentVisitorEnvironment.getContainer()
GraphQLSchemaVisitorAdapter.AppliedDirectiveArgumentEnv.getContainer()
Methods in graphql.schema.visitor with parameters of type GraphQLAppliedDirectiveModifier and TypeMethodDescriptiondefault GraphQLSchemaTraversalControl
GraphQLSchemaVisitor.visitAppliedDirective
(GraphQLAppliedDirective appliedDirective, GraphQLSchemaVisitor.AppliedDirectiveVisitorEnvironment environment) Called when visiting a GraphQLAppliedDirective in the schemaGraphQLSchemaVisitorAdapter.visitGraphQLAppliedDirective
(GraphQLAppliedDirective node, TraverserContext<GraphQLSchemaElement> context)