We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is your feature request related to a problem? Please describe. Now that RFC: Allow interfaces to implement other interfaces is merged interfaces should allow implementing other interfaces.
Describe the solution you'd like Add implements property to InterfaceTypeSettings.
implements
InterfaceTypeSettings
@InterfaceType() abstract class Node {} @InterfaceType({ implements: [Node] }) abstract class Furniture extends Node {}
Which will generate:
interface Node {} interface Furniture implements Node {}
The text was updated successfully, but these errors were encountered:
It's already implemented in #602 and available in v1.0.0-rc.2.
v1.0.0-rc.2
Sorry, something went wrong.
Sorry, missed that
No branches or pull requests
Is your feature request related to a problem? Please describe.
Now that RFC: Allow interfaces to implement other interfaces is merged interfaces should allow implementing other interfaces.
Describe the solution you'd like
Add
implements
property toInterfaceTypeSettings
.Which will generate:
The text was updated successfully, but these errors were encountered: