Package | Description |
---|---|
org.springframework.graphql.data.method |
Support for DataFetcher's based on handler methods typically annotated with
SchemaMapping
annotations. |
org.springframework.graphql.data.method.annotation.support |
Resolvers for method parameters of annotated handler methods.
|
Modifier and Type | Class and Description |
---|---|
class |
InvocableHandlerMethodSupport
Extension of
HandlerMethod that adds support for invoking the
underlying handler methods. |
Modifier and Type | Method and Description |
---|---|
HandlerMethod |
HandlerMethod.createWithResolvedBean()
If the provided instance contains a bean name rather than an object instance,
the bean name is resolved before a
HandlerMethod is created and returned. |
Constructor and Description |
---|
HandlerMethod(HandlerMethod handlerMethod)
Copy constructor for use from subclasses that accept more arguments.
|
InvocableHandlerMethodSupport(HandlerMethod handlerMethod,
Executor executor)
Create an instance.
|
Modifier and Type | Class and Description |
---|---|
class |
BatchLoaderHandlerMethod
An extension of
HandlerMethod for annotated handler methods adapted to
BatchLoaderWithContext or
MappedBatchLoaderWithContext with the list of keys and
BatchLoaderEnvironment as their input. |
class |
DataFetcherHandlerMethod
An extension of
HandlerMethod for annotated handler methods adapted
to DataFetcher with DataFetchingEnvironment
as their input. |
Constructor and Description |
---|
BatchLoaderHandlerMethod(HandlerMethod handlerMethod,
Executor executor) |
DataFetcherHandlerMethod(HandlerMethod handlerMethod,
HandlerMethodArgumentResolverComposite resolvers,
org.springframework.graphql.data.method.annotation.support.HandlerMethodInputValidator validator,
Executor executor,
boolean subscription)
Constructor with a parent handler method.
|