-
Notifications
You must be signed in to change notification settings - Fork 125
New issue
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
Interfaces cannot implement other interfaces #269
Comments
First of all, I moved this to the The feature of interfaces implementing other interfaces hasn't made it into the official GraphQL spec yet. They are included in the current working draft though, so we can reasonably expect them in the next official spec release. As such, I think it would be reasonable to just go ahead and implement this feature now. I don't have the time to work on this, but I can provide guidance if you'd like to make a PR, or maybe one of the other maintainers of |
Awesome ,I'm very glad to hear that. Thank you for this quick response. I don't have the time to work on it right now though. I might give it a try in a while if no one started in the meantime. |
Would be great to add support for this, it is now part of the official spec since October 2021. |
I'm generating my
schema.graphql
file with nestjs graphql: https://github.com/nestjs/graphql which supports interfaces implementing other interfaces:But it looks like it is not supported by this package:
(Right now, I'm using the version
0.9.4
)Is there something I should do to make it work, or is it planned to support it in the future?
The text was updated successfully, but these errors were encountered: