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
Given the input with the empty object type
input
I expect the generated type should looks like the following
the actual generated looks like
Given the input with the object type with some default value
the generated file have some default value inside, but the type is not correct.
input Something { sth1: Int = 0 sth2: String = "" } input TitleFormat { uppercase: Boolean someInput: Something = {} }
OR
input Something { sth1: Int = 0 sth2: String = "" } input TitleFormat { uppercase: Boolean someInput: Something = { sth1: 1, sth2: "test" } }
./gradlew generateJava
./build/generated/com/example/demo/generated/types/TitleFormat.kt
Repost from Netflix/dgs-framework#755
The text was updated successfully, but these errors were encountered:
Thanks for reporting.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Expected behavior
Given the
input
with the empty object typeI expect the generated type should looks like the following
Actual behavior
Given the
input
with the empty object typethe actual generated looks like
Given the
input
with the object type with some default valuethe generated file have some default value inside, but the type is not correct.
Steps to reproduce
OR
./gradlew generateJava
./build/generated/com/example/demo/generated/types/TitleFormat.kt
Repost from Netflix/dgs-framework#755
The text was updated successfully, but these errors were encountered: