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
This issue was originally found in the maven plugin implementation of codegen.
input SomeKindOfInput { nestedInput: NestedInput = {enumField : ENUM_VALUE1} } input NestedInput { enumField: SomeKindOfEnum! }
Generates an invalid Java file:
public class SomeKindOfInput { private NestedInput nestedInput = ObjectValue{objectFields=[ObjectField{name='enumField', value=EnumValue{name='ENUM_VALUE1'}}]}; }
The text was updated successfully, but these errors were encountered:
Thanks for reporting @deweyjose. We will look into a fix in the coming weeks. In the meantime, if you are blocked, please feel free to open a PR.
Sorry, something went wrong.
Hi @srinivasankavitha,
Not blocked currently, thanks for taking a look!
No branches or pull requests
This issue was originally found in the maven plugin implementation of codegen.
Generates an invalid Java file:
The text was updated successfully, but these errors were encountered: