Uses of Class
graphql.schema.GraphQLArgument
-
-
Uses of GraphQLArgument in graphql
Methods in graphql that return types with arguments of type GraphQLArgument Modifier and Type Method Description static java.util.Optional<GraphQLArgument>DirectivesUtil. directiveWithArg(java.util.List<GraphQLDirective> directives, java.lang.String directiveName, java.lang.String argumentName)Deprecated. -
Uses of GraphQLArgument in graphql.analysis
Fields in graphql.analysis declared as GraphQLArgument Modifier and Type Field Description private GraphQLArgumentQueryVisitorFieldArgumentEnvironmentImpl. graphQLArgumentprivate GraphQLArgumentQueryVisitorFieldArgumentValueEnvironmentImpl. graphQLArgumentMethods in graphql.analysis that return GraphQLArgument Modifier and Type Method Description GraphQLArgumentQueryVisitorFieldArgumentEnvironment. getGraphQLArgument()GraphQLArgumentQueryVisitorFieldArgumentEnvironmentImpl. getGraphQLArgument()GraphQLArgumentQueryVisitorFieldArgumentValueEnvironment. getGraphQLArgument()GraphQLArgumentQueryVisitorFieldArgumentValueEnvironmentImpl. getGraphQLArgument()Methods in graphql.analysis with parameters of type GraphQLArgument Modifier and Type Method Description (package private) static QueryVisitorFieldArgumentInputValueQueryVisitorFieldArgumentInputValueImpl. incompleteArgumentInputValue(GraphQLArgument graphQLArgument)Constructors in graphql.analysis with parameters of type GraphQLArgument Constructor Description QueryVisitorFieldArgumentEnvironmentImpl(GraphQLFieldDefinition fieldDefinition, Argument argument, GraphQLArgument graphQLArgument, java.lang.Object argumentValue, java.util.Map<java.lang.String,java.lang.Object> variables, QueryVisitorFieldEnvironment parentEnvironment, TraverserContext<Node> traverserContext, GraphQLSchema schema)QueryVisitorFieldArgumentValueEnvironmentImpl(GraphQLSchema schema, GraphQLFieldDefinition fieldDefinition, GraphQLArgument graphQLArgument, QueryVisitorFieldArgumentInputValue argumentInputValue, TraverserContext<Node> traverserContext, java.util.Map<java.lang.String,java.lang.Object> variables) -
Uses of GraphQLArgument in graphql.analysis.values
Methods in graphql.analysis.values with parameters of type GraphQLArgument Modifier and Type Method Description default @Nullable java.lang.ObjectValueVisitor. visitArgumentValue(@Nullable java.lang.Object coercedValue, GraphQLArgument graphQLArgument, ValueVisitor.InputElements inputElements)This is called when aGraphQLArgumentis encounteredstatic java.lang.ObjectValueTraverser. visitPreOrder(java.lang.Object coercedArgumentValue, GraphQLArgument argument, ValueVisitor visitor)This will visit a single argument of aGraphQLArgumentand if the visitor changes the value, it will return a new argument value -
Uses of GraphQLArgument in graphql.execution
Method parameters in graphql.execution with type arguments of type GraphQLArgument Modifier and Type Method Description static java.util.Map<java.lang.String,java.lang.Object>ValuesResolver. getArgumentValues(GraphQLCodeRegistry codeRegistry, java.util.List<GraphQLArgument> argumentTypes, java.util.List<Argument> arguments, CoercedVariables coercedVariables, GraphQLContext graphqlContext, java.util.Locale locale)static java.util.Map<java.lang.String,java.lang.Object>ValuesResolver. getArgumentValues(java.util.List<GraphQLArgument> argumentTypes, java.util.List<Argument> arguments, CoercedVariables coercedVariables, GraphQLContext graphqlContext, java.util.Locale locale)This is not used for validation: the argument literals are all validated and the variables are validated (when coerced)private static java.util.Map<java.lang.String,java.lang.Object>ValuesResolver. getArgumentValuesImpl(InputInterceptor inputInterceptor, GraphqlFieldVisibility fieldVisibility, java.util.List<GraphQLArgument> argumentTypes, java.util.List<Argument> arguments, CoercedVariables coercedVariables, GraphQLContext graphqlContext, java.util.Locale locale)static java.util.Map<java.lang.String,NormalizedInputValue>ValuesResolver. getNormalizedArgumentValues(java.util.List<GraphQLArgument> argumentTypes, java.util.List<Argument> arguments, java.util.Map<java.lang.String,NormalizedInputValue> normalizedVariables)No validation as the arguments are assumed validConstructors in graphql.execution with parameters of type GraphQLArgument Constructor Description NonNullableValueCoercedAsNullException(GraphQLArgument graphQLArgument) -
Uses of GraphQLArgument in graphql.execution.directives
Methods in graphql.execution.directives with parameters of type GraphQLArgument Modifier and Type Method Description private QueryAppliedDirectiveArgumentQueryDirectivesImpl. toAppliedArgument(GraphQLArgument argument) -
Uses of GraphQLArgument in graphql.relay
Methods in graphql.relay that return types with arguments of type GraphQLArgument Modifier and Type Method Description java.util.List<GraphQLArgument>Relay. getBackwardPaginationConnectionFieldArguments()java.util.List<GraphQLArgument>Relay. getConnectionFieldArguments()java.util.List<GraphQLArgument>Relay. getForwardPaginationConnectionFieldArguments() -
Uses of GraphQLArgument in graphql.schema
Fields in graphql.schema with type parameters of type GraphQLArgument Modifier and Type Field Description private com.google.common.collect.ImmutableList<GraphQLArgument>GraphQLDirective. argumentsprivate java.util.Map<java.lang.String,GraphQLArgument>GraphQLDirective.Builder. argumentsprivate com.google.common.collect.ImmutableList<GraphQLArgument>GraphQLFieldDefinition. argumentsprivate java.util.Map<java.lang.String,GraphQLArgument>GraphQLFieldDefinition.Builder. argumentsMethods in graphql.schema that return GraphQLArgument Modifier and Type Method Description GraphQLArgumentGraphQLArgument.Builder. build()GraphQLArgumentGraphQLDirective. getArgument(java.lang.String name)GraphQLArgumentGraphQLFieldDefinition. getArgument(java.lang.String name)GraphQLArgumentGraphQLArgument. transform(java.util.function.Consumer<GraphQLArgument.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.GraphQLArgumentGraphQLArgument. withNewChildren(SchemaElementChildrenContainer newChildren)Methods in graphql.schema that return types with arguments of type GraphQLArgument Modifier and Type Method Description java.util.List<GraphQLArgument>GraphQLDirective. getArguments()java.util.List<GraphQLArgument>GraphQLFieldDefinition. getArguments()Methods in graphql.schema with parameters of type GraphQLArgument Modifier and Type Method Description GraphQLDirective.BuilderGraphQLDirective.Builder. argument(GraphQLArgument argument)GraphQLFieldDefinition.BuilderGraphQLFieldDefinition.Builder. argument(GraphQLArgument argument)static <T> TGraphQLArgument. getArgumentDefaultValue(GraphQLArgument argument)This static helper method will give out a java value based on the semantics captured in theInputValueWithStatefromgetArgumentDefaultValue()Note : You MUST only call this on aGraphQLArgumentthat is part of a fully formed schema.static <T> TGraphQLArgument. getArgumentValue(GraphQLArgument argument)Deprecated.useGraphQLAppliedDirectiveArgumentinsteadstatic GraphQLArgument.BuilderGraphQLArgument. newArgument(GraphQLArgument existing)TraversalControlGraphQLTypeResolvingVisitor.TypeRefResolvingVisitor. visitGraphQLArgument(GraphQLArgument node, TraverserContext<GraphQLSchemaElement> context)TraversalControlGraphQLTypeVisitor. visitGraphQLArgument(GraphQLArgument node, TraverserContext<GraphQLSchemaElement> context)TraversalControlGraphQLTypeVisitorStub. visitGraphQLArgument(GraphQLArgument node, TraverserContext<GraphQLSchemaElement> context)Method parameters in graphql.schema with type arguments of type GraphQLArgument Modifier and Type Method Description GraphQLFieldDefinition.BuilderGraphQLFieldDefinition.Builder. argument(java.util.List<GraphQLArgument> arguments)Deprecated.This is a badly named method and is replaced byGraphQLFieldDefinition.Builder.arguments(java.util.List)GraphQLFieldDefinition.BuilderGraphQLFieldDefinition.Builder. arguments(java.util.List<GraphQLArgument> arguments)This adds the list of arguments to the field.GraphQLDirective.BuilderGraphQLDirective.Builder. replaceArguments(java.util.List<GraphQLArgument> arguments)GraphQLFieldDefinition.BuilderGraphQLFieldDefinition.Builder. replaceArguments(java.util.List<GraphQLArgument> arguments)Constructors in graphql.schema with parameters of type GraphQLArgument Constructor Description Builder(GraphQLArgument existing)Constructor parameters in graphql.schema with type arguments of type GraphQLArgument Constructor Description GraphQLDirective(java.lang.String name, java.lang.String description, boolean repeatable, java.util.EnumSet<Introspection.DirectiveLocation> locations, java.util.List<GraphQLArgument> arguments, DirectiveDefinition definition)GraphQLFieldDefinition(java.lang.String name, java.lang.String description, GraphQLOutputType type, DataFetcherFactory dataFetcherFactory, java.util.List<GraphQLArgument> arguments, java.lang.String deprecationReason, java.util.List<GraphQLDirective> directives, java.util.List<GraphQLAppliedDirective> appliedDirectives, FieldDefinition definition) -
Uses of GraphQLArgument in graphql.schema.diffing
Methods in graphql.schema.diffing with parameters of type GraphQLArgument Modifier and Type Method Description private voidSchemaGraphFactory. handleArgument(Vertex argumentVertex, GraphQLArgument graphQLArgument, SchemaGraph schemaGraph)private VertexSchemaGraphFactory. newArgument(GraphQLArgument graphQLArgument, SchemaGraph schemaGraph, boolean isIntrospectionNode) -
Uses of GraphQLArgument in graphql.schema.idl
Methods in graphql.schema.idl that return GraphQLArgument Modifier and Type Method Description (package private) GraphQLArgumentSchemaGeneratorHelper. buildArgument(SchemaGeneratorHelper.BuildContext buildCtx, InputValueDefinition valueDefinition)private static GraphQLArgumentSchemaGeneratorAppliedDirectiveHelper. buildDirectiveArg(SchemaGeneratorHelper.BuildContext buildCtx, Argument arg, GraphQLDirective directiveDefinition)(package private) static GraphQLArgumentSchemaGeneratorAppliedDirectiveHelper. buildDirectiveArgumentDefinitionFromAst(SchemaGeneratorHelper.BuildContext buildCtx, InputValueDefinition valueDefinition, java.util.function.Function<Type<?>,GraphQLInputType> inputTypeFactory)default GraphQLArgumentSchemaDirectiveWiring. onArgument(SchemaDirectiveWiringEnvironment<GraphQLArgument> environment)This is called when an argument is encountered, which gives the schema directive a chance to modify the shape and behaviour of that DSL elementprivate GraphQLArgumentSchemaGeneratorDirectiveHelper. onArgument(GraphQLArgument argument, SchemaGeneratorDirectiveHelper.Parameters params)Methods in graphql.schema.idl that return types with arguments of type GraphQLArgument Modifier and Type Method Description private static java.util.List<GraphQLArgument>SchemaGeneratorAppliedDirectiveHelper. transferMissingArguments(SchemaGeneratorHelper.BuildContext buildCtx, java.util.List<GraphQLArgument> arguments, GraphQLDirective directiveDefinition)private java.util.List<GraphQLArgument>SchemaGeneratorDirectiveHelper. wireArguments(GraphQLFieldDefinition fieldDefinition, GraphQLFieldsContainer fieldsContainer, NamedNode<?> fieldsContainerNode, SchemaGeneratorDirectiveHelper.Parameters params, GraphQLFieldDefinition field)Methods in graphql.schema.idl with parameters of type GraphQLArgument Modifier and Type Method Description private GraphQLArgumentSchemaGeneratorDirectiveHelper. onArgument(GraphQLArgument argument, SchemaGeneratorDirectiveHelper.Parameters params)Method parameters in graphql.schema.idl with type arguments of type GraphQLArgument Modifier and Type Method Description (package private) java.lang.StringSchemaPrinter. argsString(java.lang.Class<? extends GraphQLSchemaElement> parent, java.util.List<GraphQLArgument> arguments)(package private) java.lang.StringSchemaPrinter. argsString(java.util.List<GraphQLArgument> arguments)default GraphQLArgumentSchemaDirectiveWiring. onArgument(SchemaDirectiveWiringEnvironment<GraphQLArgument> environment)This is called when an argument is encountered, which gives the schema directive a chance to modify the shape and behaviour of that DSL elementprivate static java.util.List<GraphQLArgument>SchemaGeneratorAppliedDirectiveHelper. transferMissingArguments(SchemaGeneratorHelper.BuildContext buildCtx, java.util.List<GraphQLArgument> arguments, GraphQLDirective directiveDefinition) -
Uses of GraphQLArgument in graphql.schema.impl
Methods in graphql.schema.impl with parameters of type GraphQLArgument Modifier and Type Method Description TraversalControlGraphQLTypeCollectingVisitor. visitGraphQLArgument(GraphQLArgument node, TraverserContext<GraphQLSchemaElement> context)TraversalControlMultiReadOnlyGraphQLTypeVisitor. visitGraphQLArgument(GraphQLArgument node, TraverserContext<GraphQLSchemaElement> context) -
Uses of GraphQLArgument in graphql.schema.validation
Methods in graphql.schema.validation with parameters of type GraphQLArgument Modifier and Type Method Description private voidAppliedDirectiveArgumentsAreValid. checkArgument(GraphQLDirective directive, GraphQLArgument argument, TraverserContext<GraphQLSchemaElement> context)private java.lang.StringTypesImplementInterfaces. makeArgStr(GraphQLArgument argument)private voidTypeAndFieldRule. validateFieldDefinitionArgument(java.lang.String typeName, java.lang.String fieldName, GraphQLArgument argument, SchemaValidationErrorCollector errorCollector)TraversalControlDefaultValuesAreValid. visitGraphQLArgument(GraphQLArgument argument, TraverserContext<GraphQLSchemaElement> context) -
Uses of GraphQLArgument in graphql.schema.visitor
Methods in graphql.schema.visitor with parameters of type GraphQLArgument Modifier and Type Method Description default GraphQLSchemaTraversalControlGraphQLSchemaVisitor. visitArgument(GraphQLArgument argument, GraphQLSchemaVisitor.ArgumentVisitorEnvironment environment)Called when visiting aGraphQLArgumentin the schemaTraversalControlGraphQLSchemaVisitorAdapter. visitGraphQLArgument(GraphQLArgument node, TraverserContext<GraphQLSchemaElement> context) -
Uses of GraphQLArgument in graphql.util
Methods in graphql.util that return types with arguments of type GraphQLArgument Modifier and Type Method Description private static java.util.List<GraphQLArgument>Anonymizer. getMatchingArgumentDefinitions(java.lang.String name, java.util.Set<GraphQLFieldDefinition> fieldDefinitions) -
Uses of GraphQLArgument in graphql.validation
Fields in graphql.validation declared as GraphQLArgument Modifier and Type Field Description private GraphQLArgumentTraversalContext. argumentMethods in graphql.validation that return GraphQLArgument Modifier and Type Method Description private GraphQLArgumentTraversalContext. find(java.util.List<GraphQLArgument> arguments, java.lang.String name)GraphQLArgumentTraversalContext. getArgument()GraphQLArgumentValidationContext. getArgument()Method parameters in graphql.validation with type arguments of type GraphQLArgument Modifier and Type Method Description private GraphQLArgumentTraversalContext. find(java.util.List<GraphQLArgument> arguments, java.lang.String name)
-