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 52e2b57 commit 8eb11c9Copy full SHA for 8eb11c9
src/main/kotlin/graphql/kickstart/tools/SchemaParser.kt
@@ -327,6 +327,7 @@ class SchemaParser internal constructor(
327
.description(getDocumentation(arg, options))
328
.type(determineInputType(arg.type, inputObjects, setOf()))
329
.apply { arg.defaultValue?.let { defaultValueLiteral(it) } }
330
+ .withDirectives(*buildDirectives(arg.directives, Introspection.DirectiveLocation.ARGUMENT_DEFINITION))
331
.withAppliedDirectives(*buildAppliedDirectives(arg.directives))
332
.build())
333
}
0 commit comments