Class and Description |
---|
graphql.execution.batched.BatchedExecutionStrategy
This has been deprecated in favour of using
AsyncExecutionStrategy and DataLoaderDispatcherInstrumentation |
graphql.execution.ExecutorServiceExecutionStrategy
Use
AsyncExecutionStrategy and CompletableFuture.supplyAsync(java.util.function.Supplier, java.util.concurrent.Executor)
in your data fetchers instead. |
Field and Description |
---|
graphql.Directives.FetchDirective
- this is no longer needed and will be removed in a future version
|
Constructor and Description |
---|
graphql.GraphQL(GraphQLSchema)
use the
GraphQL.newGraphQL(GraphQLSchema) builder instead. This will be removed in a future version. |
graphql.GraphQL(GraphQLSchema, ExecutionStrategy)
use the
GraphQL.newGraphQL(GraphQLSchema) builder instead. This will be removed in a future version. |
graphql.GraphQL(GraphQLSchema, ExecutionStrategy, ExecutionStrategy)
use the
GraphQL.newGraphQL(GraphQLSchema) builder instead. This will be removed in a future version. |
graphql.GraphQL(GraphQLSchema, ExecutionStrategy, ExecutionStrategy, ExecutionStrategy)
use the
GraphQL.newGraphQL(GraphQLSchema) builder instead. This will be removed in a future version. |
graphql.schema.GraphQLFieldDefinition(String, String, GraphQLOutputType, DataFetcher<?>, List<GraphQLArgument>, String) |