graphql-java-annotations
graphql-java-annotations copied to clipboard
Autodetect GraphQL interfaces
If an object implements an interface with GraphQL annotations on it, that interface should be autodetected and added to the schema.
@GraphQLTypeResolver(...)
public interface MyIF{}
public class Foo implements MyIF {}
annotations.additionalType(Foo.class);
Should detect MyIF, and does not.