Uses of Class
graphql.schema.GraphQLAppliedDirective
-
Packages that use GraphQLAppliedDirective Package Description graphql graphql.introspection graphql.schema graphql.schema.idl graphql.schema.impl graphql.schema.visitor -
-
Uses of GraphQLAppliedDirective in graphql
Fields in graphql with type parameters of type GraphQLAppliedDirective Modifier and Type Field Description private java.util.List<GraphQLAppliedDirective>
DirectivesUtil.DirectivesHolder. allAppliedDirectives
private com.google.common.collect.ImmutableMap<java.lang.String,java.util.List<GraphQLAppliedDirective>>
DirectivesUtil.DirectivesHolder. allAppliedDirectivesByName
Methods in graphql that return GraphQLAppliedDirective Modifier and Type Method Description GraphQLAppliedDirective
DirectivesUtil.DirectivesHolder. getAppliedDirective(java.lang.String directiveName)
Methods in graphql that return types with arguments of type GraphQLAppliedDirective Modifier and Type Method Description com.google.common.collect.ImmutableMap<java.lang.String,java.util.List<GraphQLAppliedDirective>>
DirectivesUtil.DirectivesHolder. getAllAppliedDirectivesByName()
java.util.List<GraphQLAppliedDirective>
DirectivesUtil.DirectivesHolder. getAppliedDirectives()
java.util.List<GraphQLAppliedDirective>
DirectivesUtil.DirectivesHolder. getAppliedDirectives(java.lang.String directiveName)
static java.util.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 java.util.List<GraphQLAppliedDirective>
DirectivesUtil. toAppliedDirectives(java.util.Collection<GraphQLAppliedDirective> appliedDirectives, java.util.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 GraphQLAppliedDirective Modifier and Type Method Description static java.util.List<GraphQLAppliedDirective>
DirectivesUtil. toAppliedDirectives(java.util.Collection<GraphQLAppliedDirective> appliedDirectives, java.util.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 GraphQLAppliedDirective Modifier and Type Method Description private java.util.List<GraphQLAppliedDirective>
IntrospectionWithDirectivesSupport. filterAppliedDirectives(GraphQLSchema schema, boolean isDefinedDirective, GraphQLDirectiveContainer container, java.util.List<GraphQLAppliedDirective> directives)
Method parameters in graphql.introspection with type arguments of type GraphQLAppliedDirective Modifier and Type Method Description private java.util.List<GraphQLAppliedDirective>
IntrospectionWithDirectivesSupport. filterAppliedDirectives(GraphQLSchema schema, boolean isDefinedDirective, GraphQLDirectiveContainer container, java.util.List<GraphQLAppliedDirective> directives)
-
Uses of GraphQLAppliedDirective in graphql.schema
Fields in graphql.schema with type parameters of type GraphQLAppliedDirective Modifier and Type Field Description protected java.util.List<GraphQLAppliedDirective>
GraphqlDirectivesContainerTypeBuilder. appliedDirectives
private java.util.List<GraphQLAppliedDirective>
GraphQLSchema.Builder. schemaAppliedDirectives
(package private) java.util.Set<GraphQLAppliedDirective>
SchemaTransformer.DummyRoot. schemaAppliedDirectives
Methods in graphql.schema that return GraphQLAppliedDirective Modifier and Type Method Description GraphQLAppliedDirective
GraphQLAppliedDirective.Builder. build()
GraphQLAppliedDirective
GraphQLArgument. getAppliedDirective(java.lang.String directiveName)
GraphQLAppliedDirective
GraphQLDirectiveContainer. getAppliedDirective(java.lang.String directiveName)
Returns a non-repeatable directive with the provided name.GraphQLAppliedDirective
GraphQLEnumType. getAppliedDirective(java.lang.String directiveName)
GraphQLAppliedDirective
GraphQLEnumValueDefinition. getAppliedDirective(java.lang.String directiveName)
GraphQLAppliedDirective
GraphQLFieldDefinition. getAppliedDirective(java.lang.String directiveName)
GraphQLAppliedDirective
GraphQLInputObjectField. getAppliedDirective(java.lang.String directiveName)
GraphQLAppliedDirective
GraphQLInputObjectType. getAppliedDirective(java.lang.String directiveName)
GraphQLAppliedDirective
GraphQLInterfaceType. getAppliedDirective(java.lang.String directiveName)
GraphQLAppliedDirective
GraphQLObjectType. getAppliedDirective(java.lang.String directiveName)
GraphQLAppliedDirective
GraphQLScalarType. getAppliedDirective(java.lang.String directiveName)
GraphQLAppliedDirective
GraphQLUnionType. getAppliedDirective(java.lang.String directiveName)
GraphQLAppliedDirective
GraphQLSchema. getSchemaAppliedDirective(java.lang.String directiveName)
This returns the named directive that have been explicitly applied to the schema object.private static GraphQLAppliedDirective[]
GraphQLSchema. schemaAppliedDirectivesArray(GraphQLSchema existingSchema)
GraphQLAppliedDirective
GraphQLDirective. toAppliedDirective()
This method can be used to turn a directive that was being use as an applied directive into one.GraphQLAppliedDirective
GraphQLAppliedDirective. transform(java.util.function.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
GraphQLAppliedDirective. withNewChildren(SchemaElementChildrenContainer newChildren)
Methods in graphql.schema that return types with arguments of type GraphQLAppliedDirective Modifier and Type Method Description java.util.Map<java.lang.String,java.util.List<GraphQLAppliedDirective>>
GraphQLArgument. getAllAppliedDirectivesByName()
java.util.Map<java.lang.String,java.util.List<GraphQLAppliedDirective>>
GraphQLDirectiveContainer. getAllAppliedDirectivesByName()
This will return a Map of the all directives that are associated with aGraphQLNamedSchemaElement
, including both repeatable and non-repeatable directives.java.util.Map<java.lang.String,java.util.List<GraphQLAppliedDirective>>
GraphQLEnumType. getAllAppliedDirectivesByName()
java.util.Map<java.lang.String,java.util.List<GraphQLAppliedDirective>>
GraphQLEnumValueDefinition. getAllAppliedDirectivesByName()
java.util.Map<java.lang.String,java.util.List<GraphQLAppliedDirective>>
GraphQLFieldDefinition. getAllAppliedDirectivesByName()
java.util.Map<java.lang.String,java.util.List<GraphQLAppliedDirective>>
GraphQLInputObjectField. getAllAppliedDirectivesByName()
java.util.Map<java.lang.String,java.util.List<GraphQLAppliedDirective>>
GraphQLInputObjectType. getAllAppliedDirectivesByName()
java.util.Map<java.lang.String,java.util.List<GraphQLAppliedDirective>>
GraphQLInterfaceType. getAllAppliedDirectivesByName()
java.util.Map<java.lang.String,java.util.List<GraphQLAppliedDirective>>
GraphQLObjectType. getAllAppliedDirectivesByName()
java.util.Map<java.lang.String,java.util.List<GraphQLAppliedDirective>>
GraphQLScalarType. getAllAppliedDirectivesByName()
java.util.Map<java.lang.String,java.util.List<GraphQLAppliedDirective>>
GraphQLUnionType. getAllAppliedDirectivesByName()
java.util.Map<java.lang.String,java.util.List<GraphQLAppliedDirective>>
GraphQLSchema. getAllSchemaAppliedDirectivesByName()
This returns a map of non-repeatable and repeatable directives that have been explicitly applied to the schema object.java.util.List<GraphQLAppliedDirective>
GraphQLArgument. getAppliedDirectives()
java.util.List<GraphQLAppliedDirective>
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 java.util.List<GraphQLAppliedDirective>
GraphQLDirectiveContainer. getAppliedDirectives(java.lang.String directiveName)
Returns all of the directives with the provided name, including repeatable and non repeatable directives.java.util.List<GraphQLAppliedDirective>
GraphQLEnumType. getAppliedDirectives()
java.util.List<GraphQLAppliedDirective>
GraphQLEnumValueDefinition. getAppliedDirectives()
java.util.List<GraphQLAppliedDirective>
GraphQLFieldDefinition. getAppliedDirectives()
java.util.List<GraphQLAppliedDirective>
GraphQLInputObjectField. getAppliedDirectives()
java.util.List<GraphQLAppliedDirective>
GraphQLInputObjectType. getAppliedDirectives()
java.util.List<GraphQLAppliedDirective>
GraphQLInterfaceType. getAppliedDirectives()
java.util.List<GraphQLAppliedDirective>
GraphQLObjectType. getAppliedDirectives()
java.util.List<GraphQLAppliedDirective>
GraphQLScalarType. getAppliedDirectives()
java.util.List<GraphQLAppliedDirective>
GraphQLUnionType. getAppliedDirectives()
java.util.List<GraphQLAppliedDirective>
GraphQLSchema. getSchemaAppliedDirectives()
This returns the list of directives that have been explicitly applied to the schema object.java.util.List<GraphQLAppliedDirective>
GraphQLSchema. getSchemaAppliedDirectives(java.lang.String directiveName)
Method parameters in graphql.schema with type arguments of type GraphQLAppliedDirective Modifier and Type Method Description B
GraphqlDirectivesContainerTypeBuilder. replaceAppliedDirectives(java.util.List<GraphQLAppliedDirective> directives)
GraphQLSchema.Builder
GraphQLSchema.Builder. withSchemaAppliedDirectives(java.util.Collection<? extends GraphQLAppliedDirective> appliedDirectives)
Constructors in graphql.schema with parameters of type GraphQLAppliedDirective Constructor Description Builder(GraphQLAppliedDirective existing)
-
Uses of GraphQLAppliedDirective in graphql.schema.idl
Fields in graphql.schema.idl declared as GraphQLAppliedDirective Modifier and Type Field Description private GraphQLAppliedDirective
SchemaDirectiveWiringEnvironmentImpl. registeredAppliedDirective
Fields in graphql.schema.idl with type parameters of type GraphQLAppliedDirective Modifier and Type Field Description private java.util.List<GraphQLAppliedDirective>
FieldWiringEnvironment. appliedDirectives
private java.util.Map<java.lang.String,GraphQLAppliedDirective>
SchemaDirectiveWiringEnvironmentImpl. appliedDirectives
Methods in graphql.schema.idl that return GraphQLAppliedDirective Modifier and Type Method Description GraphQLAppliedDirective
SchemaDirectiveWiringEnvironment. getAppliedDirective()
This returns the applied directive that theSchemaDirectiveWiring
was registered against during calls toRuntimeWiring.Builder.directive(String, SchemaDirectiveWiring)
GraphQLAppliedDirective
SchemaDirectiveWiringEnvironment. getAppliedDirective(java.lang.String directiveName)
Returns a named applied directive or nullGraphQLAppliedDirective
SchemaDirectiveWiringEnvironmentImpl. getAppliedDirective()
GraphQLAppliedDirective
SchemaDirectiveWiringEnvironmentImpl. getAppliedDirective(java.lang.String directiveName)
Methods in graphql.schema.idl that return types with arguments of type GraphQLAppliedDirective Modifier and Type Method Description private java.util.List<GraphQLAppliedDirective>
SchemaPrinter. addDeprecatedDirectiveIfNeeded(GraphQLDirectiveContainer directiveContainer)
private static Pair<GraphQLDirective,GraphQLAppliedDirective>
SchemaGeneratorAppliedDirectiveHelper. buildAppliedDirective(SchemaGeneratorHelper.BuildContext buildCtx, java.util.function.Function<Type<?>,GraphQLInputType> inputTypeFactory, Directive directive, java.util.Set<GraphQLDirective> directiveDefinitions, Introspection.DirectiveLocation directiveLocation, GraphqlTypeComparatorRegistry comparatorRegistry)
(package private) static Pair<java.util.List<GraphQLDirective>,java.util.List<GraphQLAppliedDirective>>
SchemaGeneratorAppliedDirectiveHelper. buildAppliedDirectives(SchemaGeneratorHelper.BuildContext buildCtx, java.util.function.Function<Type<?>,GraphQLInputType> inputTypeFactory, java.util.List<Directive> directives, java.util.List<Directive> extensionDirectives, Introspection.DirectiveLocation directiveLocation, java.util.Set<GraphQLDirective> runtimeDirectives, GraphqlTypeComparatorRegistry comparatorRegistry)
java.util.List<GraphQLAppliedDirective>
FieldWiringEnvironment. getAppliedDirectives()
java.util.Map<java.lang.String,GraphQLAppliedDirective>
SchemaDirectiveWiringEnvironment. getAppliedDirectives()
java.util.Map<java.lang.String,GraphQLAppliedDirective>
SchemaDirectiveWiringEnvironmentImpl. getAppliedDirectives()
Methods in graphql.schema.idl with parameters of type GraphQLAppliedDirective Modifier and Type Method Description SchemaDirectiveWiringEnvironment<T>
SchemaGeneratorDirectiveHelper.EnvBuilder. apply(T outputElement, java.util.List<GraphQLDirective> allDirectives, java.util.List<GraphQLAppliedDirective> allAppliedDirectives, GraphQLAppliedDirective registeredAppliedDirective, GraphQLDirective registeredDirective)
private java.lang.String
SchemaPrinter. directiveString(GraphQLAppliedDirective directive)
private boolean
SchemaPrinter. isDeprecatedDirective(GraphQLAppliedDirective directive)
Method parameters in graphql.schema.idl with type arguments of type GraphQLAppliedDirective Modifier and Type Method Description (package private) static void
SchemaGeneratorAppliedDirectiveHelper. buildAppliedDirectives(SchemaGeneratorHelper.BuildContext buildCtx, GraphqlDirectivesContainerTypeBuilder<?,?> builder, Pair<java.util.List<GraphQLDirective>,java.util.List<GraphQLAppliedDirective>> appliedDirectives)
private java.lang.String
SchemaPrinter. directivesString(java.lang.Class<? extends GraphQLSchemaElement> parentType, java.util.List<GraphQLAppliedDirective> directives)
private boolean
SchemaPrinter. hasDeprecatedDirective(java.util.List<GraphQLAppliedDirective> directives)
Constructors in graphql.schema.idl with parameters of type GraphQLAppliedDirective Constructor Description SchemaDirectiveWiringEnvironmentImpl(T element, java.util.List<GraphQLDirective> directives, java.util.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 GraphQLAppliedDirective Modifier and Type Method Description TraversalControl
MultiReadOnlyGraphQLTypeVisitor. visitGraphQLAppliedDirective(GraphQLAppliedDirective node, TraverserContext<GraphQLSchemaElement> context)
-
Uses of GraphQLAppliedDirective in graphql.schema.visitor
Methods in graphql.schema.visitor that return GraphQLAppliedDirective Modifier and Type Method Description GraphQLAppliedDirective
GraphQLSchemaVisitor.AppliedDirectiveArgumentVisitorEnvironment. getContainer()
GraphQLAppliedDirective
GraphQLSchemaVisitorAdapter.AppliedDirectiveArgumentEnv. getContainer()
Methods in graphql.schema.visitor with parameters of type GraphQLAppliedDirective Modifier and Type Method Description default GraphQLSchemaTraversalControl
GraphQLSchemaVisitor. visitAppliedDirective(GraphQLAppliedDirective appliedDirective, GraphQLSchemaVisitor.AppliedDirectiveVisitorEnvironment environment)
Called when visiting a GraphQLAppliedDirective in the schemaTraversalControl
GraphQLSchemaVisitorAdapter. visitGraphQLAppliedDirective(GraphQLAppliedDirective node, TraverserContext<GraphQLSchemaElement> context)
-