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
I have a schema with this in it:
type Object { foo_bar: FooBar fooBar: FooBar }
and when I run gqlgenc I get:
gqlgenc
FooBar *FooBar `json:"foo_bar"` FooBar *FooBar `json:"fooBar"`
which introduces a duplicate error. It's fixed when I manually change that code to:
Foo_Bar *FooBar `json:"foo_bar"` FooBar *FooBar `json:"fooBar"`
The text was updated successfully, but these errors were encountered:
Yamashou
No branches or pull requests
I have a schema with this in it:
and when I run
gqlgenc
I get:which introduces a duplicate error. It's fixed when I manually change that code to:
The text was updated successfully, but these errors were encountered: