We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f2c2522 + 0f896c5 commit c2f7376Copy full SHA for c2f7376
graphql-dgs-codegen-core/src/main/kotlin/com/netflix/graphql/dgs/codegen/CodeGen.kt
@@ -105,7 +105,7 @@ class CodeGen(private val config: CodeGenConfig) {
105
*/
106
private fun buildDocument(): Document {
107
val options = ParserOptions.getDefaultParserOptions().transform { builder ->
108
- builder.maxTokens(SDL_MAX_ALLOWED_SCHEMA_TOKENS)
+ builder.maxTokens(SDL_MAX_ALLOWED_SCHEMA_TOKENS).maxWhitespaceTokens(SDL_MAX_ALLOWED_SCHEMA_TOKENS)
109
}
110
val parser = Parser()
111
0 commit comments