Uses of Class
graphql.execution.directives.QueryAppliedDirective
-
Packages that use QueryAppliedDirective Package Description graphql.execution.directives -
-
Uses of QueryAppliedDirective in graphql.execution.directives
Fields in graphql.execution.directives with type parameters of type QueryAppliedDirective Modifier and Type Field Description private com.google.common.collect.ImmutableMap<Field,java.util.List<QueryAppliedDirective>>
QueryDirectivesImpl. fieldAppliedDirectivesByField
private com.google.common.collect.ImmutableMap<java.lang.String,java.util.List<QueryAppliedDirective>>
QueryDirectivesImpl. fieldAppliedDirectivesByName
Methods in graphql.execution.directives that return QueryAppliedDirective Modifier and Type Method Description QueryAppliedDirective
QueryAppliedDirective.Builder. build()
private QueryAppliedDirective
QueryDirectivesImpl. toAppliedDirective(GraphQLDirective directive)
QueryAppliedDirective
QueryAppliedDirective. transform(java.util.function.Consumer<QueryAppliedDirective.Builder> builderConsumer)
This helps you transform the current GraphQLDirective into another one by starting a builder with all the current values and allows you to transform it how you want.Methods in graphql.execution.directives that return types with arguments of type QueryAppliedDirective Modifier and Type Method Description java.util.List<QueryAppliedDirective>
QueryDirectives. getImmediateAppliedDirective(java.lang.String directiveName)
This will return a list of the named applied directives that are immediately on this merged field.java.util.List<QueryAppliedDirective>
QueryDirectivesImpl. getImmediateAppliedDirective(java.lang.String directiveName)
java.util.Map<Field,java.util.List<QueryAppliedDirective>>
QueryDirectives. getImmediateAppliedDirectivesByField()
This will return a map of theField
s inside aMergedField
and the immediate applied directives that are on each specific fieldjava.util.Map<Field,java.util.List<QueryAppliedDirective>>
QueryDirectivesImpl. getImmediateAppliedDirectivesByField()
java.util.Map<java.lang.String,java.util.List<QueryAppliedDirective>>
QueryDirectives. getImmediateAppliedDirectivesByName()
This will return a map of the applied directives that are immediately on a merged fieldjava.util.Map<java.lang.String,java.util.List<QueryAppliedDirective>>
QueryDirectivesImpl. getImmediateAppliedDirectivesByName()
Methods in graphql.execution.directives with parameters of type QueryAppliedDirective Modifier and Type Method Description static QueryAppliedDirective.Builder
QueryAppliedDirective. newDirective(QueryAppliedDirective existing)
Constructors in graphql.execution.directives with parameters of type QueryAppliedDirective Constructor Description Builder(QueryAppliedDirective existing)
-