graphql-java-annotations icon indicating copy to clipboard operation
graphql-java-annotations copied to clipboard

extending type doesn't support interface

Open BleicherMagic opened this issue 5 years ago • 0 comments

Hi, I created an a extended class with GraphQLTypeExtension annotaion and added interface to it and when i checked the generated schema i didn't see that my type extended this interface example: `@GraphQLName("IcdAsset") public class IcdAsset extends IcdEntity {}

@GraphQLTypeExtension(IcdAsset.class) public class IcdAssetExtended implements EntityCommonInterfaceType { } @GraphQLTypeResolver(MockResolver.class) public interface EntityCommonInterfaceType {}

Generated schema: type IcdAsset { }(should be type IcdAsset extends EntityCommonInterfaceType) `

BleicherMagic avatar Oct 28 '20 10:10 BleicherMagic