See: Description
| Annotation Type | Description |
|---|---|
| Argument |
Annotation to bind a named GraphQL
argument
onto a method parameter. |
| Arguments | |
| BatchMapping |
Annotation for a handler method that batch loads field values, given a list
of source/parent values.
|
| ContextValue |
Annotation to bind a method parameter to an attribute from the
main GraphQLContext. |
| LocalContextValue |
Annotation to bind a method parameter to an attribute from the
local GraphQLContext. |
| MutationMapping |
@MutationMapping is a composed annotation that acts as a
shortcut for @SchemaMapping with
typeName="Mutation". |
| QueryMapping |
@QueryMapping is a composed annotation that acts as a
shortcut for @SchemaMapping with
typeName="Query". |
| SchemaMapping |
Annotation to express the mapping of a handler method to a GraphQL type and
field pair.
|
| SubscriptionMapping |
@SubscriptionMapping is a composed annotation that acts as a
shortcut for @SchemaMapping with
typeName="Subscription". |