Uses of Class
graphql.language.OperationDefinition.Operation
-
Packages that use OperationDefinition.Operation Package Description graphql.execution graphql.language graphql.normalized graphql.parser -
-
Uses of OperationDefinition.Operation in graphql.execution
Methods in graphql.execution with parameters of type OperationDefinition.Operation Modifier and Type Method Description ExecutionStrategy
ExecutionContext. getStrategy(OperationDefinition.Operation operation)
-
Uses of OperationDefinition.Operation in graphql.language
Fields in graphql.language declared as OperationDefinition.Operation Modifier and Type Field Description private OperationDefinition.Operation
OperationDefinition.Builder. operation
private OperationDefinition.Operation
OperationDefinition. operation
Methods in graphql.language that return OperationDefinition.Operation Modifier and Type Method Description OperationDefinition.Operation
OperationDefinition. getOperation()
static OperationDefinition.Operation
OperationDefinition.Operation. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static OperationDefinition.Operation[]
OperationDefinition.Operation. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in graphql.language with parameters of type OperationDefinition.Operation Modifier and Type Method Description OperationDefinition.Builder
OperationDefinition.Builder. operation(OperationDefinition.Operation operation)
Constructors in graphql.language with parameters of type OperationDefinition.Operation Constructor Description OperationDefinition(java.lang.String name, OperationDefinition.Operation operation)
OperationDefinition(java.lang.String name, OperationDefinition.Operation operation, java.util.List<VariableDefinition> variableDefinitions, java.util.List<Directive> directives, SelectionSet selectionSet, SourceLocation sourceLocation, java.util.List<Comment> comments, IgnoredChars ignoredChars, java.util.Map<java.lang.String,java.lang.String> additionalData)
-
Uses of OperationDefinition.Operation in graphql.normalized
Fields in graphql.normalized declared as OperationDefinition.Operation Modifier and Type Field Description private OperationDefinition.Operation
ExecutableNormalizedOperation. operation
Methods in graphql.normalized that return OperationDefinition.Operation Modifier and Type Method Description OperationDefinition.Operation
ExecutableNormalizedOperation. getOperation()
Methods in graphql.normalized with parameters of type OperationDefinition.Operation 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.private static @Nullable GraphQLObjectType
ExecutableNormalizedOperationToAstCompiler. getOperationType(@NotNull GraphQLSchema schema, OperationDefinition.Operation operationKind)
Constructors in graphql.normalized with parameters of type OperationDefinition.Operation Constructor Description ExecutableNormalizedOperation(OperationDefinition.Operation operation, java.lang.String operationName, java.util.List<ExecutableNormalizedField> topLevelFields, com.google.common.collect.ImmutableListMultimap<Field,ExecutableNormalizedField> fieldToNormalizedField, java.util.Map<ExecutableNormalizedField,MergedField> normalizedFieldToMergedField, java.util.Map<ExecutableNormalizedField,QueryDirectives> normalizedFieldToQueryDirectives, com.google.common.collect.ImmutableListMultimap<FieldCoordinates,ExecutableNormalizedField> coordinatesToNormalizedFields)
-
Uses of OperationDefinition.Operation in graphql.parser
Methods in graphql.parser that return OperationDefinition.Operation Modifier and Type Method Description protected OperationDefinition.Operation
GraphqlAntlrToLanguage. parseOperation(GraphqlParser.OperationTypeContext operationTypeContext)
-