Class and Description |
---|
graphql.execution.batched.BatchedExecutionStrategy
This has been deprecated in favour of using
AsyncExecutionStrategy and DataLoaderDispatcherInstrumentation |
Field and Description |
---|
graphql.Directives.FetchDirective
- this is no longer needed and will be removed in a future version
|
Method and Description |
---|
graphql.GraphQL.execute(String, Object) |
graphql.GraphQL.execute(String, Object, Map<String, Object>) |
graphql.GraphQL.execute(String, String, Object) |
graphql.GraphQL.execute(String, String, Object, Map<String, Object>) |
graphql.schema.SchemaUtil.findImplementations(GraphQLSchema, GraphQLInterfaceType) |
graphql.schema.GraphQLDirective.isOnField() |
graphql.schema.GraphQLDirective.isOnFragment() |
graphql.schema.GraphQLDirective.isOnOperation() |
graphql.schema.diff.DiffEvent.newInfo()
use
DiffEvent.apiInfo() instead |
graphql.schema.GraphQLDirective.Builder.onField(boolean)
Use
graphql.schema.GraphQLDirective.Builder#validLocations(DirectiveLocation...) |
graphql.schema.GraphQLDirective.Builder.onFragment(boolean)
Use
graphql.schema.GraphQLDirective.Builder#validLocations(DirectiveLocation...) |
graphql.schema.GraphQLDirective.Builder.onOperation(boolean)
Use
graphql.schema.GraphQLDirective.Builder#validLocations(DirectiveLocation...) |
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.GraphQLDirective(String, String, EnumSet<Introspection.DirectiveLocation>, List<GraphQLArgument>, boolean, boolean, boolean)
Use the Builder
|
graphql.schema.GraphQLFieldDefinition(String, String, GraphQLOutputType, DataFetcher<?>, List<GraphQLArgument>, String) |