Closed paulbakker closed 2 years ago
interface Fruit { seeds: [Seed] } interface StoneFruit implements Fruit { seeds: [Seed] fuzzy: Boolean }
generates
public interface Fruit { //... } public interface StoneFruit { //... }
StoneFruit should extend Fruit but that's missing.
StoneFruit
Fruit
Fixed in PR: https://github.com/Netflix/dgs-codegen/pull/289
generates
StoneFruit
should extendFruit
but that's missing.