Uses of Interface
graphql.execution.directives.QueryDirectives
-
Packages that use QueryDirectives Package Description graphql.execution.directives graphql.normalized graphql.schema -
-
Uses of QueryDirectives in graphql.execution.directives
Classes in graphql.execution.directives that implement QueryDirectives Modifier and Type Class Description class
QueryDirectivesImpl
These objects are ALWAYS in the context of a single MergedFieldMethods in graphql.execution.directives that return QueryDirectives Modifier and Type Method Description QueryDirectives
QueryDirectives.Builder. build()
QueryDirectives
QueryDirectivesBuilder. build()
-
Uses of QueryDirectives in graphql.normalized
Fields in graphql.normalized with type parameters of type QueryDirectives Modifier and Type Field Description private java.util.Map<ExecutableNormalizedField,QueryDirectives>
ExecutableNormalizedOperation. normalizedFieldToQueryDirectives
Methods in graphql.normalized that return QueryDirectives Modifier and Type Method Description QueryDirectives
ExecutableNormalizedOperation. getQueryDirectives(ExecutableNormalizedField executableNormalizedField)
This looks up theQueryDirectives
associated with the givenExecutableNormalizedField
Methods in graphql.normalized that return types with arguments of type QueryDirectives Modifier and Type Method Description java.util.Map<ExecutableNormalizedField,QueryDirectives>
ExecutableNormalizedOperation. getNormalizedFieldToQueryDirectives()
Method parameters in graphql.normalized with type arguments of type QueryDirectives 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.private static java.util.Map<java.lang.String,Field>
ExecutableNormalizedOperationToAstCompiler. selectionForNormalizedField(GraphQLSchema schema, ExecutableNormalizedField executableNormalizedField, @NotNull java.util.Map<ExecutableNormalizedField,QueryDirectives> normalizedFieldToQueryDirectives, VariableAccumulator variableAccumulator)
private static Field
ExecutableNormalizedOperationToAstCompiler. selectionForNormalizedField(GraphQLSchema schema, java.lang.String objectTypeName, ExecutableNormalizedField executableNormalizedField, @NotNull java.util.Map<ExecutableNormalizedField,QueryDirectives> normalizedFieldToQueryDirectives, VariableAccumulator variableAccumulator)
private static java.util.List<Selection<?>>
ExecutableNormalizedOperationToAstCompiler. subselectionsForNormalizedField(GraphQLSchema schema, @NotNull java.lang.String parentOutputType, java.util.List<ExecutableNormalizedField> executableNormalizedFields, @NotNull java.util.Map<ExecutableNormalizedField,QueryDirectives> normalizedFieldToQueryDirectives, VariableAccumulator variableAccumulator)
-
Uses of QueryDirectives in graphql.schema
Fields in graphql.schema declared as QueryDirectives Modifier and Type Field Description private QueryDirectives
DataFetchingEnvironmentImpl.Builder. queryDirectives
private QueryDirectives
DataFetchingEnvironmentImpl. queryDirectives
Methods in graphql.schema that return QueryDirectives Modifier and Type Method Description QueryDirectives
DataFetchingEnvironment. getQueryDirectives()
This gives you access to the directives related to this fieldQueryDirectives
DataFetchingEnvironmentImpl. getQueryDirectives()
QueryDirectives
DelegatingDataFetchingEnvironment. getQueryDirectives()
Methods in graphql.schema with parameters of type QueryDirectives Modifier and Type Method Description DataFetchingEnvironmentImpl.Builder
DataFetchingEnvironmentImpl.Builder. queryDirectives(QueryDirectives queryDirectives)
-