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 ExecutionStrategyExecutionContext. 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.OperationOperationDefinition.Builder. operationprivate OperationDefinition.OperationOperationDefinition. operationMethods in graphql.language that return OperationDefinition.Operation Modifier and Type Method Description OperationDefinition.OperationOperationDefinition. getOperation()static OperationDefinition.OperationOperationDefinition.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.BuilderOperationDefinition.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.OperationExecutableNormalizedOperation. operationMethods in graphql.normalized that return OperationDefinition.Operation Modifier and Type Method Description OperationDefinition.OperationExecutableNormalizedOperation. getOperation()Methods in graphql.normalized with parameters of type OperationDefinition.Operation Modifier and Type Method Description static ExecutableNormalizedOperationToAstCompiler.CompilerResultExecutableNormalizedOperationToAstCompiler. 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 textDocumentwith possibly variables from the givenExecutableNormalizedFields TheVariablePredicateis 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.CompilerResultExecutableNormalizedOperationToAstCompiler. 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 textDocumentwith possibly variables from the givenExecutableNormalizedFields TheVariablePredicateis 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 GraphQLObjectTypeExecutableNormalizedOperationToAstCompiler. 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.OperationGraphqlAntlrToLanguage. parseOperation(GraphqlParser.OperationTypeContext operationTypeContext)
-