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 b4ba871 commit 08d48f7Copy full SHA for 08d48f7
src/main/kotlin/graphql/kickstart/tools/SchemaParser.kt
@@ -177,7 +177,7 @@ class SchemaParser internal constructor(
177
.description(if (inputDefinition.description != null) inputDefinition.description.content else getDocumentation(inputDefinition))
178
.defaultValue(buildDefaultValue(inputDefinition.defaultValue))
179
.type(determineInputType(inputDefinition.type, inputObjects, referencingInputObjects))
180
- .withDirectives(*buildDirectives(inputDefinition.directives, setOf(), Introspection.DirectiveLocation.INPUT_FIELD_DEFINITION))
+ .withDirectives(*buildDirectives(inputDefinition.directives, Introspection.DirectiveLocation.INPUT_FIELD_DEFINITION))
181
builder.field(fieldBuilder.build())
182
}
183
0 commit comments