Skip to content

Commit 08d48f7

Browse files
committed
Merge upstream and fix buildDirectives call
1 parent b4ba871 commit 08d48f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/kotlin/graphql/kickstart/tools/SchemaParser.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ class SchemaParser internal constructor(
177177
.description(if (inputDefinition.description != null) inputDefinition.description.content else getDocumentation(inputDefinition))
178178
.defaultValue(buildDefaultValue(inputDefinition.defaultValue))
179179
.type(determineInputType(inputDefinition.type, inputObjects, referencingInputObjects))
180-
.withDirectives(*buildDirectives(inputDefinition.directives, setOf(), Introspection.DirectiveLocation.INPUT_FIELD_DEFINITION))
180+
.withDirectives(*buildDirectives(inputDefinition.directives, Introspection.DirectiveLocation.INPUT_FIELD_DEFINITION))
181181
builder.field(fieldBuilder.build())
182182
}
183183
}

0 commit comments

Comments
 (0)