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
The following code will produce invalid GQL:
interface Foo { export enum FooEnums { ONE = <any>'ONE', TWO = <any>'TWO', THREE = <any>'THREE', } export enum BarEnums { ONE = FooEnums.ONE, TWO = FooEnums.TWO, } }
The GQL produced will be something like:
enum FooEnums { ONE TWO } enum BarEnums { FooEnums.ONE FooEnums.TWO }
This is invalid. The code generation should produce the expected:
enum FooEnums { ONE TWO } enum BarEnums { ONE TWO }
The text was updated successfully, but these errors were encountered:
Yeah, I think there's a more general problem here where we should be extracting the value for each enum entry, not the name of it
Sorry, something went wrong.
No branches or pull requests
The following code will produce invalid GQL:
The GQL produced will be something like:
This is invalid. The code generation should produce the expected:
The text was updated successfully, but these errors were encountered: