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
Currently the following code will error with Error: Don't know how to handle AnyKeyword nodes:
Error: Don't know how to handle AnyKeyword nodes
// Foo.ts export interface Foo { prop:any; } // schema.ts import Foo from './foo'; export interface Bar extends Foo { prop:SomeConcreteType; }
The expectation is that the GQL would contain the type:
type Bar { prop: SomeConcreteType }
Alternatively the source code could be written:
// Foo.ts export interface Foo<T> { prop:T; } // schema.ts import Foo from './Foo'; export interface Bar extends Foo<SomeConcreteType>;
And that would result in the same output.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently the following code will error with
Error: Don't know how to handle AnyKeyword nodes
:The expectation is that the GQL would contain the type:
Alternatively the source code could be written:
And that would result in the same output.
The text was updated successfully, but these errors were encountered: