Uses of Class
graphql.GraphQL.Builder
-
Packages that use GraphQL.Builder Package Description graphql -
-
Uses of GraphQL.Builder in graphql
Methods in graphql that return GraphQL.Builder Modifier and Type Method Description GraphQL.Builder
GraphQL.Builder. defaultDataFetcherExceptionHandler(DataFetcherExceptionHandler dataFetcherExceptionHandler)
This allows you to set a defaultDataFetcherExceptionHandler
that will be used to handle exceptions that happen inDataFetcher
invocations.GraphQL.Builder
GraphQL.Builder. doNotAddDefaultInstrumentations()
For performance reasons you can opt into situation where the default instrumentations (such asDataLoaderDispatcherInstrumentation
will not be automatically added into the graphql instance.GraphQL.Builder
GraphQL.Builder. executionIdProvider(ExecutionIdProvider executionIdProvider)
GraphQL.Builder
GraphQL.Builder. instrumentation(Instrumentation instrumentation)
GraphQL.Builder
GraphQL.Builder. mutationExecutionStrategy(ExecutionStrategy executionStrategy)
static GraphQL.Builder
GraphQL. newGraphQL(GraphQLSchema graphQLSchema)
Helps you build a GraphQL object ready to execute queriesGraphQL.Builder
GraphQL.Builder. preparsedDocumentProvider(PreparsedDocumentProvider preparsedDocumentProvider)
GraphQL.Builder
GraphQL.Builder. queryExecutionStrategy(ExecutionStrategy executionStrategy)
GraphQL.Builder
GraphQL.Builder. schema(GraphQLSchema graphQLSchema)
GraphQL.Builder
GraphQL.Builder. subscriptionExecutionStrategy(ExecutionStrategy executionStrategy)
GraphQL.Builder
GraphQL.Builder. valueUnboxer(ValueUnboxer valueUnboxer)
Method parameters in graphql with type arguments of type GraphQL.Builder Modifier and Type Method Description GraphQL
GraphQL. transform(java.util.function.Consumer<GraphQL.Builder> builderConsumer)
This helps you transform the current GraphQL object into another one by starting a builder with all the current values and allows you to transform it how you want.Constructors in graphql with parameters of type GraphQL.Builder Constructor Description GraphQL(GraphQL.Builder builder)
-