Uses of Interface
graphql.normalized.VariablePredicate
-
Packages that use VariablePredicate Package Description graphql.normalized -
-
Uses of VariablePredicate in graphql.normalized
Fields in graphql.normalized declared as VariablePredicate Modifier and Type Field Description private @Nullable VariablePredicate
VariableAccumulator. variablePredicate
Methods in graphql.normalized with parameters of type VariablePredicate Modifier and Type Method Description static ExecutableNormalizedOperationToAstCompiler.CompilerResult
ExecutableNormalizedOperationToAstCompiler. compileToDocument(@NotNull GraphQLSchema schema, OperationDefinition.Operation operationKind, @Nullable java.lang.String operationName, @NotNull java.util.List<ExecutableNormalizedField> topLevelFields, @NotNull java.util.Map<ExecutableNormalizedField,QueryDirectives> normalizedFieldToQueryDirectives, @Nullable VariablePredicate variablePredicate)
This will compile an operation textDocument
with possibly variables from the givenExecutableNormalizedField
s TheVariablePredicate
is used called to decide if the given argument values should be made into a variable OR inlined into the operation text as a graphql literal.static ExecutableNormalizedOperationToAstCompiler.CompilerResult
ExecutableNormalizedOperationToAstCompiler. compileToDocument(@NotNull GraphQLSchema schema, OperationDefinition.Operation operationKind, @Nullable java.lang.String operationName, @NotNull java.util.List<ExecutableNormalizedField> topLevelFields, @Nullable VariablePredicate variablePredicate)
This will compile an operation textDocument
with possibly variables from the givenExecutableNormalizedField
s TheVariablePredicate
is used called to decide if the given argument values should be made into a variable OR inlined into the operation text as a graphql literal.Constructors in graphql.normalized with parameters of type VariablePredicate Constructor Description VariableAccumulator(@Nullable VariablePredicate variablePredicate)
-