Package graphql.normalized
Class ExecutableNormalizedOperationFactory
- java.lang.Object
-
- graphql.normalized.ExecutableNormalizedOperationFactory
-
@PublicApi public class ExecutableNormalizedOperationFactory extends java.lang.Object
This factory can create aExecutableNormalizedOperationwhich represents what would be executed during a given graphql operation.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classExecutableNormalizedOperationFactory.Options
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ExecutableNormalizedOperationcreateExecutableNormalizedOperation(GraphQLSchema graphQLSchema, Document document, java.lang.String operationName, CoercedVariables coercedVariableValues)This will create a runtime representation of the graphql operation that would be executed in a runtime sense.static ExecutableNormalizedOperationcreateExecutableNormalizedOperation(GraphQLSchema graphQLSchema, Document document, java.lang.String operationName, CoercedVariables coercedVariableValues, ExecutableNormalizedOperationFactory.Options options)This will create a runtime representation of the graphql operation that would be executed in a runtime sense.static ExecutableNormalizedOperationcreateExecutableNormalizedOperation(GraphQLSchema graphQLSchema, OperationDefinition operationDefinition, java.util.Map<java.lang.String,FragmentDefinition> fragments, CoercedVariables coercedVariableValues)This will create a runtime representation of the graphql operation that would be executed in a runtime sense.static ExecutableNormalizedOperationcreateExecutableNormalizedOperation(GraphQLSchema graphQLSchema, OperationDefinition operationDefinition, java.util.Map<java.lang.String,FragmentDefinition> fragments, CoercedVariables coercedVariableValues, ExecutableNormalizedOperationFactory.Options options)This will create a runtime representation of the graphql operation that would be executed in a runtime sense.static ExecutableNormalizedOperationcreateExecutableNormalizedOperationWithRawVariables(GraphQLSchema graphQLSchema, Document document, java.lang.String operationName, RawVariables rawVariables)This will create a runtime representation of the graphql operation that would be executed in a runtime sense.static ExecutableNormalizedOperationcreateExecutableNormalizedOperationWithRawVariables(GraphQLSchema graphQLSchema, Document document, java.lang.String operationName, RawVariables rawVariables, GraphQLContext graphQLContext, java.util.Locale locale)This will create a runtime representation of the graphql operation that would be executed in a runtime sense.static ExecutableNormalizedOperationcreateExecutableNormalizedOperationWithRawVariables(GraphQLSchema graphQLSchema, Document document, java.lang.String operationName, RawVariables rawVariables, ExecutableNormalizedOperationFactory.Options options)This will create a runtime representation of the graphql operation that would be executed in a runtime sense.
-
-
-
Method Detail
-
createExecutableNormalizedOperation
public static ExecutableNormalizedOperation createExecutableNormalizedOperation(GraphQLSchema graphQLSchema, Document document, java.lang.String operationName, CoercedVariables coercedVariableValues)
This will create a runtime representation of the graphql operation that would be executed in a runtime sense.- Parameters:
graphQLSchema- the schema to be useddocument- theDocumentholding the operation textoperationName- the operation name to usecoercedVariableValues- the coerced variables to use- Returns:
- a runtime representation of the graphql operation.
-
createExecutableNormalizedOperation
public static ExecutableNormalizedOperation createExecutableNormalizedOperation(GraphQLSchema graphQLSchema, Document document, java.lang.String operationName, CoercedVariables coercedVariableValues, ExecutableNormalizedOperationFactory.Options options)
This will create a runtime representation of the graphql operation that would be executed in a runtime sense.- Parameters:
graphQLSchema- the schema to be useddocument- theDocumentholding the operation textoperationName- the operation name to usecoercedVariableValues- the coerced variables to useoptions- theExecutableNormalizedOperationFactory.Optionsto use for parsing- Returns:
- a runtime representation of the graphql operation.
-
createExecutableNormalizedOperation
public static ExecutableNormalizedOperation createExecutableNormalizedOperation(GraphQLSchema graphQLSchema, OperationDefinition operationDefinition, java.util.Map<java.lang.String,FragmentDefinition> fragments, CoercedVariables coercedVariableValues)
This will create a runtime representation of the graphql operation that would be executed in a runtime sense.- Parameters:
graphQLSchema- the schema to be usedoperationDefinition- the operation to be executedfragments- a set of fragments associated with the operationcoercedVariableValues- the coerced variables to use- Returns:
- a runtime representation of the graphql operation.
-
createExecutableNormalizedOperation
public static ExecutableNormalizedOperation createExecutableNormalizedOperation(GraphQLSchema graphQLSchema, OperationDefinition operationDefinition, java.util.Map<java.lang.String,FragmentDefinition> fragments, CoercedVariables coercedVariableValues, ExecutableNormalizedOperationFactory.Options options)
This will create a runtime representation of the graphql operation that would be executed in a runtime sense.- Parameters:
graphQLSchema- the schema to be usedoperationDefinition- the operation to be executedfragments- a set of fragments associated with the operationcoercedVariableValues- the coerced variables to useoptions- the options to use- Returns:
- a runtime representation of the graphql operation.
-
createExecutableNormalizedOperationWithRawVariables
public static ExecutableNormalizedOperation createExecutableNormalizedOperationWithRawVariables(GraphQLSchema graphQLSchema, Document document, java.lang.String operationName, RawVariables rawVariables)
This will create a runtime representation of the graphql operation that would be executed in a runtime sense.- Parameters:
graphQLSchema- the schema to be useddocument- theDocumentholding the operation textoperationName- the operation name to userawVariables- the raw variables to be coerced- Returns:
- a runtime representation of the graphql operation.
-
createExecutableNormalizedOperationWithRawVariables
public static ExecutableNormalizedOperation createExecutableNormalizedOperationWithRawVariables(GraphQLSchema graphQLSchema, Document document, java.lang.String operationName, RawVariables rawVariables, GraphQLContext graphQLContext, java.util.Locale locale)
This will create a runtime representation of the graphql operation that would be executed in a runtime sense.- Parameters:
graphQLSchema- the schema to be useddocument- theDocumentholding the operation textoperationName- the operation name to userawVariables- the raw variables that have not yet been coercedlocale- theLocaleto use during coerciongraphQLContext- theGraphQLContextto use during coercion- Returns:
- a runtime representation of the graphql operation.
-
createExecutableNormalizedOperationWithRawVariables
public static ExecutableNormalizedOperation createExecutableNormalizedOperationWithRawVariables(GraphQLSchema graphQLSchema, Document document, java.lang.String operationName, RawVariables rawVariables, ExecutableNormalizedOperationFactory.Options options)
This will create a runtime representation of the graphql operation that would be executed in a runtime sense.- Parameters:
graphQLSchema- the schema to be useddocument- theDocumentholding the operation textoperationName- the operation name to userawVariables- the raw variables that have not yet been coercedoptions- theExecutableNormalizedOperationFactory.Optionsto use for parsing- Returns:
- a runtime representation of the graphql operation.
-
-