Uses of Class
graphql.normalized.NormalizedInputValue
-
Packages that use NormalizedInputValue Package Description graphql.execution graphql.normalized -
-
Uses of NormalizedInputValue in graphql.execution
Methods in graphql.execution that return types with arguments of type NormalizedInputValue Modifier and Type Method Description 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 validstatic java.util.Map<java.lang.String,NormalizedInputValue>
ValuesResolver. getNormalizedVariableValues(GraphQLSchema schema, java.util.List<VariableDefinition> variableDefinitions, RawVariables rawVariables, GraphQLContext graphqlContext, java.util.Locale locale)
Normalized variables values are Literals with type information.Method parameters in graphql.execution with type arguments of type NormalizedInputValue Modifier and Type Method Description 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 validprivate static boolean
ValuesResolver. isVariableAbsent(Value value, java.util.Map<java.lang.String,NormalizedInputValue> variables)
static java.lang.Object
ValuesResolver. literalToNormalizedValue(GraphqlFieldVisibility fieldVisibility, GraphQLType type, Value inputValue, java.util.Map<java.lang.String,NormalizedInputValue> normalizedVariables)
private static java.lang.Object
ValuesResolver. literalToNormalizedValueForInputObject(GraphqlFieldVisibility fieldVisibility, GraphQLInputObjectType type, ObjectValue inputObjectLiteral, java.util.Map<java.lang.String,NormalizedInputValue> normalizedVariables)
private static java.util.List<java.lang.Object>
ValuesResolver. literalToNormalizedValueForList(GraphqlFieldVisibility fieldVisibility, GraphQLList type, Value value, java.util.Map<java.lang.String,NormalizedInputValue> normalizedVariables)
-
Uses of NormalizedInputValue in graphql.normalized
Fields in graphql.normalized with type parameters of type NormalizedInputValue Modifier and Type Field Description private com.google.common.collect.ImmutableMap<java.lang.String,NormalizedInputValue>
ExecutableNormalizedField.Builder. normalizedArguments
private com.google.common.collect.ImmutableMap<java.lang.String,NormalizedInputValue>
ExecutableNormalizedField. normalizedArguments
private java.util.Map<java.lang.String,NormalizedInputValue>
FieldCollectorNormalizedQueryParams.Builder. normalizedVariableValues
private java.util.Map<java.lang.String,NormalizedInputValue>
FieldCollectorNormalizedQueryParams. normalizedVariableValues
Methods in graphql.normalized that return NormalizedInputValue Modifier and Type Method Description NormalizedInputValue
ExecutableNormalizedField. getNormalizedArgument(java.lang.String name)
Returns an argument value as aNormalizedInputValue
which contains its type name and its current valueMethods in graphql.normalized that return types with arguments of type NormalizedInputValue Modifier and Type Method Description com.google.common.collect.ImmutableMap<java.lang.String,NormalizedInputValue>
ExecutableNormalizedField. getNormalizedArguments()
@Nullable java.util.Map<java.lang.String,NormalizedInputValue>
FieldCollectorNormalizedQueryParams. getNormalizedVariableValues()
Methods in graphql.normalized with parameters of type NormalizedInputValue Modifier and Type Method Description VariableValueWithDefinition
VariableAccumulator. accumulateVariable(NormalizedInputValue normalizedInputValue)
private static @NotNull Value<?>
ExecutableNormalizedOperationToAstCompiler. argValue(ExecutableNormalizedField executableNormalizedField, java.lang.String argName, NormalizedInputValue normalizedInputValue, VariableAccumulator variableAccumulator)
(package private) static VariableValueWithDefinition
ValueToVariableValueCompiler. normalizedInputValueToVariable(NormalizedInputValue normalizedInputValue, int queryVariableCount)
boolean
VariableAccumulator. shouldMakeVariable(ExecutableNormalizedField executableNormalizedField, java.lang.String argName, NormalizedInputValue normalizedInputValue)
boolean
VariablePredicate. shouldMakeVariable(ExecutableNormalizedField executableNormalizedField, java.lang.String argName, NormalizedInputValue normalizedInputValue)
Return true if a variable should be made for this field argumentMethod parameters in graphql.normalized with type arguments of type NormalizedInputValue Modifier and Type Method Description ExecutableNormalizedField.Builder
ExecutableNormalizedField.Builder. normalizedArguments(@Nullable java.util.Map<java.lang.String,NormalizedInputValue> arguments)
FieldCollectorNormalizedQueryParams.Builder
FieldCollectorNormalizedQueryParams.Builder. normalizedVariables(java.util.Map<java.lang.String,NormalizedInputValue> normalizedVariableValues)
-