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 ce4e0ec commit 9154737Copy full SHA for 9154737
src/main/kotlin/graphql/kickstart/tools/SchemaClassScanner.kt
@@ -38,7 +38,6 @@ internal class SchemaClassScanner(
38
39
private val definitionsByName = (allDefinitions.filterIsInstance<TypeDefinition<*>>() - extensionDefinitions - inputExtensionDefinitions).associateBy { it.name }
40
private val objectDefinitions = (allDefinitions.filterIsInstance<ObjectTypeDefinition>() - extensionDefinitions)
41
- private val directiveDefinitions = allDefinitions.filterIsInstance<DirectiveDefinition>().toSet()
42
private val objectDefinitionsByName = objectDefinitions.associateBy { it.name }
43
private val interfaceDefinitionsByName = allDefinitions.filterIsInstance<InterfaceTypeDefinition>().associateBy { it.name }
44
0 commit comments