Package graphql
Class GraphQLUnusualConfiguration
- java.lang.Object
-
- graphql.GraphQLUnusualConfiguration
-
public class GraphQLUnusualConfiguration extends java.lang.ObjectThis allows you to control "unusual" aspects of the GraphQL system including some JVM wide settings and some per execution settings as well as experimental ones.This is named unusual because in general we don't expect you to have to make ths configuration by default, but you can opt into certain features or disable them if you want to.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classGraphQLUnusualConfiguration.DataloaderConfigstatic classGraphQLUnusualConfiguration.GoodFaithIntrospectionConfigstatic classGraphQLUnusualConfiguration.GraphQLContextConfigurationstatic classGraphQLUnusualConfiguration.IncrementalSupportConfigstatic classGraphQLUnusualConfiguration.ParserConfigstatic classGraphQLUnusualConfiguration.PropertyDataFetcherConfigstatic classGraphQLUnusualConfiguration.ResponseMapFactoryConfig
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GraphQLUnusualConfiguration.GoodFaithIntrospectionConfiggoodFaithIntrospection()GraphQLUnusualConfiguration.ParserConfigparsing()GraphQLUnusualConfiguration.PropertyDataFetcherConfigpropertyDataFetching()
-
-
-
Method Detail
-
parsing
public GraphQLUnusualConfiguration.ParserConfig parsing()
- Returns:
- an element that allows you to control JVM wide parsing configuration
-
propertyDataFetching
public GraphQLUnusualConfiguration.PropertyDataFetcherConfig propertyDataFetching()
- Returns:
- an element that allows you to control JVM wide
PropertyDataFetcherconfiguration
-
goodFaithIntrospection
public GraphQLUnusualConfiguration.GoodFaithIntrospectionConfig goodFaithIntrospection()
- Returns:
- an element that allows you to control JVM wide configuration
of
GoodFaithIntrospection
-
-