Closed nettrino closed 1 year ago
Given the GraphQL
interface ResourceEntity { ... } interface CloudResourceEntity implements ResourceEntity { ... } type AWSCloudPlatform implements CloudPlatform & CloudResourceEntity & ResourceEntity { ... }
@dataclass(kw_only=True) class AWSCloudPlatform(CloudPlatform, ResourceEntity, CloudResourceEntity): ...
whereas the right code to be emitted is
@dataclass(kw_only=True) class AWSCloudPlatform(CloudPlatform, CloudResourceEntity): ...
Given the GraphQL
whereas the right code to be emitted is