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
With latest release v0.8.0
input ITicket { otype: String! }
=>
type ITicket struct { Otype string json:"otype"}
type ITicket struct { Otype string
}
=> type Iticket struct { Otype string json:"otype" }
type Iticket struct { Otype string
The text was updated successfully, but these errors were encountered:
Fixed by #579
Sorry, something went wrong.
@vektah my change can't handling this issue... 😿 because, ITicket will split into ["ITicket"] and it doesn't have commonInitialisms prefix.
ITicket
["ITicket"]
quick fix 99designs#577 if we already have a camel name
e435e72
I created a new PR but this may cause some commonInitialisms tests fail
Successfully merging a pull request may close this issue.
Expected Behaviour
With latest release v0.8.0
input ITicket { otype: String! }
=>
type ITicket struct { Otype string
json:"otype"}
Actual Behavior
input ITicket { otype: String! }
=>
type Iticket struct { Otype string
json:"otype"}
Minimal graphql.schema and models to reproduce
The text was updated successfully, but these errors were encountered: