Uses of Class
graphql.schema.GraphQLAppliedDirectiveArgument
-
Packages that use GraphQLAppliedDirectiveArgument Package Description graphql.analysis.values graphql.schema graphql.schema.idl graphql.schema.impl graphql.schema.visitor -
-
Uses of GraphQLAppliedDirectiveArgument in graphql.analysis.values
Methods in graphql.analysis.values with parameters of type GraphQLAppliedDirectiveArgument Modifier and Type Method Description default @Nullable java.lang.Object
ValueVisitor. visitAppliedDirectiveArgumentValue(@Nullable java.lang.Object coercedValue, GraphQLAppliedDirectiveArgument graphQLAppliedDirectiveArgument, ValueVisitor.InputElements inputElements)
This is called when aGraphQLAppliedDirectiveArgument
is encounteredstatic java.lang.Object
ValueTraverser. visitPreOrder(java.lang.Object coercedArgumentValue, GraphQLAppliedDirectiveArgument argument, ValueVisitor visitor)
This will visit a single argument of aGraphQLAppliedDirective
and if the visitor changes the value, it will return a new argument value -
Uses of GraphQLAppliedDirectiveArgument in graphql.schema
Fields in graphql.schema with type parameters of type GraphQLAppliedDirectiveArgument Modifier and Type Field Description private com.google.common.collect.ImmutableList<GraphQLAppliedDirectiveArgument>
GraphQLAppliedDirective. arguments
private java.util.Map<java.lang.String,GraphQLAppliedDirectiveArgument>
GraphQLAppliedDirective.Builder. arguments
Methods in graphql.schema that return GraphQLAppliedDirectiveArgument Modifier and Type Method Description GraphQLAppliedDirectiveArgument
GraphQLAppliedDirectiveArgument.Builder. build()
GraphQLAppliedDirectiveArgument
GraphQLAppliedDirective. getArgument(java.lang.String name)
GraphQLAppliedDirectiveArgument
GraphQLArgument. toAppliedArgument()
This method can be used to turn an argument that was being use as an applied argument into one.GraphQLAppliedDirectiveArgument
GraphQLAppliedDirectiveArgument. transform(java.util.function.Consumer<GraphQLAppliedDirectiveArgument.Builder> builderConsumer)
This helps you transform the current GraphQLArgument into another one by starting a builder with all the current values and allows you to transform it how you want.GraphQLAppliedDirectiveArgument
GraphQLAppliedDirectiveArgument. withNewChildren(SchemaElementChildrenContainer newChildren)
Methods in graphql.schema that return types with arguments of type GraphQLAppliedDirectiveArgument Modifier and Type Method Description java.util.List<GraphQLAppliedDirectiveArgument>
GraphQLAppliedDirective. getArguments()
Methods in graphql.schema with parameters of type GraphQLAppliedDirectiveArgument Modifier and Type Method Description GraphQLAppliedDirective.Builder
GraphQLAppliedDirective.Builder. argument(GraphQLAppliedDirectiveArgument argument)
static GraphQLAppliedDirectiveArgument.Builder
GraphQLAppliedDirectiveArgument. newArgument(GraphQLAppliedDirectiveArgument existing)
TraversalControl
GraphQLTypeResolvingVisitor.TypeRefResolvingVisitor. visitGraphQLAppliedDirectiveArgument(GraphQLAppliedDirectiveArgument node, TraverserContext<GraphQLSchemaElement> context)
default TraversalControl
GraphQLTypeVisitor. visitGraphQLAppliedDirectiveArgument(GraphQLAppliedDirectiveArgument node, TraverserContext<GraphQLSchemaElement> context)
TraversalControl
GraphQLTypeVisitorStub. visitGraphQLAppliedDirectiveArgument(GraphQLAppliedDirectiveArgument node, TraverserContext<GraphQLSchemaElement> context)
Method parameters in graphql.schema with type arguments of type GraphQLAppliedDirectiveArgument Modifier and Type Method Description GraphQLAppliedDirective.Builder
GraphQLAppliedDirective.Builder. replaceArguments(java.util.List<GraphQLAppliedDirectiveArgument> arguments)
Constructors in graphql.schema with parameters of type GraphQLAppliedDirectiveArgument Constructor Description Builder(GraphQLAppliedDirectiveArgument existing)
Constructor parameters in graphql.schema with type arguments of type GraphQLAppliedDirectiveArgument Constructor Description GraphQLAppliedDirective(java.lang.String name, Directive definition, java.util.List<GraphQLAppliedDirectiveArgument> arguments)
-
Uses of GraphQLAppliedDirectiveArgument in graphql.schema.idl
Methods in graphql.schema.idl that return GraphQLAppliedDirectiveArgument Modifier and Type Method Description private static GraphQLAppliedDirectiveArgument
SchemaGeneratorAppliedDirectiveHelper. buildAppliedArg(SchemaGeneratorHelper.BuildContext buildCtx, Argument arg, GraphQLDirective directiveDefinition)
Methods in graphql.schema.idl that return types with arguments of type GraphQLAppliedDirectiveArgument Modifier and Type Method Description private static java.util.List<GraphQLAppliedDirectiveArgument>
SchemaGeneratorAppliedDirectiveHelper. transferMissingAppliedArguments(java.util.List<GraphQLAppliedDirectiveArgument> arguments, GraphQLDirective directiveDefinition)
Method parameters in graphql.schema.idl with type arguments of type GraphQLAppliedDirectiveArgument Modifier and Type Method Description private static java.util.List<GraphQLAppliedDirectiveArgument>
SchemaGeneratorAppliedDirectiveHelper. transferMissingAppliedArguments(java.util.List<GraphQLAppliedDirectiveArgument> arguments, GraphQLDirective directiveDefinition)
-
Uses of GraphQLAppliedDirectiveArgument in graphql.schema.impl
Methods in graphql.schema.impl with parameters of type GraphQLAppliedDirectiveArgument Modifier and Type Method Description TraversalControl
GraphQLTypeCollectingVisitor. visitGraphQLAppliedDirectiveArgument(GraphQLAppliedDirectiveArgument node, TraverserContext<GraphQLSchemaElement> context)
TraversalControl
MultiReadOnlyGraphQLTypeVisitor. visitGraphQLAppliedDirectiveArgument(GraphQLAppliedDirectiveArgument node, TraverserContext<GraphQLSchemaElement> context)
-
Uses of GraphQLAppliedDirectiveArgument in graphql.schema.visitor
Methods in graphql.schema.visitor with parameters of type GraphQLAppliedDirectiveArgument Modifier and Type Method Description default GraphQLSchemaTraversalControl
GraphQLSchemaVisitor. visitAppliedDirectiveArgument(GraphQLAppliedDirectiveArgument appliedDirectiveArgument, GraphQLSchemaVisitor.AppliedDirectiveArgumentVisitorEnvironment environment)
Called when visiting aGraphQLAppliedDirectiveArgument
in the schemaTraversalControl
GraphQLSchemaVisitorAdapter. visitGraphQLAppliedDirectiveArgument(GraphQLAppliedDirectiveArgument node, TraverserContext<GraphQLSchemaElement> context)
-