Annotation Type GraphQLMixinField


@Retention(RUNTIME)
@Target(METHOD)
@Documented
public @interface GraphQLMixinField
Mark that a method on a root object defines a field that should be mixed in to another type. The first argument of the method should be annotated with GraphQLSource and point to the type.

 @GraphQLMixinField
 public List getOrders(@GraphQLSource Customer customer) {
   ...
 }