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
Default variables are generated and used when declaring an input.
Default variables aren't generated and are ignored.
schema { query: Query } type Query { Test(input: DateFilter): Boolean } enum DATE_FILTER_OP { EQ NEQ GT GTE LT LTE } input DateFilter { value: String! timezone: String = "UTC" op: DATE_FILTER_OP! }
snippet of model generated
type DateFilter struct { Value string Timezone *string Op DATE_FILTER_OP }
The text was updated successfully, but these errors were encountered:
Experiencing this issue on a build where expected values are resulting in de-reference errors, @vektah should this be working?
Sorry, something went wrong.
No branches or pull requests
Expected Behaviour
Default variables are generated and used when declaring an input.
Actual Behavior
Default variables aren't generated and are ignored.
Minimal graphql.schema and models to reproduce
snippet of model generated
The text was updated successfully, but these errors were encountered: