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.BuilderGraphQL.Builder. defaultDataFetcherExceptionHandler(DataFetcherExceptionHandler dataFetcherExceptionHandler)This allows you to set a defaultDataFetcherExceptionHandlerthat will be used to handle exceptions that happen inDataFetcherinvocations.GraphQL.BuilderGraphQL.Builder. doNotAddDefaultInstrumentations()For performance reasons you can opt into situation where the default instrumentations (such asDataLoaderDispatcherInstrumentationwill not be automatically added into the graphql instance.GraphQL.BuilderGraphQL.Builder. executionIdProvider(ExecutionIdProvider executionIdProvider)GraphQL.BuilderGraphQL.Builder. instrumentation(Instrumentation instrumentation)GraphQL.BuilderGraphQL.Builder. mutationExecutionStrategy(ExecutionStrategy executionStrategy)static GraphQL.BuilderGraphQL. newGraphQL(GraphQLSchema graphQLSchema)Helps you build a GraphQL object ready to execute queriesGraphQL.BuilderGraphQL.Builder. preparsedDocumentProvider(PreparsedDocumentProvider preparsedDocumentProvider)GraphQL.BuilderGraphQL.Builder. queryExecutionStrategy(ExecutionStrategy executionStrategy)GraphQL.BuilderGraphQL.Builder. schema(GraphQLSchema graphQLSchema)GraphQL.BuilderGraphQL.Builder. subscriptionExecutionStrategy(ExecutionStrategy executionStrategy)GraphQL.BuilderGraphQL.Builder. valueUnboxer(ValueUnboxer valueUnboxer)Method parameters in graphql with type arguments of type GraphQL.Builder Modifier and Type Method Description GraphQLGraphQL. 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)
-