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
When I create an interface that implements another interface like so:
interface Node { id: ID! } interface Origin implements Node { id: ID! }
The resulting model does not correctly extend the parent interface.
public interface OriginTO extends NodeTO { @javax.validation.constraints.NotNull String getId(); }
public interface OriginTO { @javax.validation.constraints.NotNull String getId(); }
Support for interfaces implementing other interfaces has only recently been added to graphql: graphql/graphql-spec#373
The text was updated successfully, but these errors were encountered:
Support interfaces to extend other interfaces #468
484414a
Support interfaces to extend other interfaces #468 (#469)
4917c4b
Thank you very much for the quick response!
Sorry, something went wrong.
kobylynskyi
Successfully merging a pull request may close this issue.
Issue Description
When I create an interface that implements another interface like so:
The resulting model does not correctly extend the parent interface.
Steps to Reproduce
Expected Result
Actual Result
Your Environment and Setup
Additional context
Support for interfaces implementing other interfaces has only recently been added to graphql: graphql/graphql-spec#373
The text was updated successfully, but these errors were encountered: