We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac08c75 commit 36077f3Copy full SHA for 36077f3
src/main/java/com/kobylynskyi/graphql/codegen/model/MappingConfig.java
@@ -221,7 +221,7 @@ public void combine(MappingConfig source) {
221
generateNoArgsConstructorOnly = getValueOrDefaultToThis(source,
222
GraphQLCodegenConfiguration::isGenerateNoArgsConstructorOnly);
223
generateModelsWithPublicFields = getValueOrDefaultToThis(source,
224
- GraphQLCodegenConfiguration::isGenerateNoArgsConstructorOnly);
+ GraphQLCodegenConfiguration::isGenerateModelsWithPublicFields);
225
}
226
227
private <T> T getValueOrDefaultToThis(MappingConfig source, Function<MappingConfig, T> getValueFunction) {
0 commit comments