Closed shevek closed 1 year ago
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.
Hi @shevek,
We don't believe this is relevant (and this would introduce breaking changes), this annotation can be added directly added to your class explicitly (instead of auto-detecting).
Thanks
If an object implements an interface with GraphQL annotations on it, that interface should be autodetected and added to the schema.
Should detect MyIF, and does not.