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 1c9b8f5 commit 0b72d81Copy full SHA for 0b72d81
graphql-dgs-codegen-core/src/main/kotlin/com/netflix/graphql/dgs/codegen/CodeGen.kt
@@ -133,7 +133,7 @@ class CodeGen(
133
val zipFile = ZipFile(file)
134
for (entry in zipFile.entries()) {
135
if (!entry.isDirectory &&
136
- (entry.name.endsWith(".graphqls") || entry.name.endsWith(".graphql"))
+ (entry.name.endsWith(".graphqls") || entry.name.endsWith(".graphql") || entry.name.endsWith(".gqls"))
137
) {
138
logger.info("Generating schema from {}: {}", file.name, entry.name)
139
readerBuilder.reader(zipFile.getInputStream(entry).reader(), "codegen")
0 commit comments