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 4657c9d commit 9a226ccCopy full SHA for 9a226cc
src/main/kotlin/graphql/kickstart/tools/directive/SchemaDirectiveWiringEnvironmentImpl.kt
@@ -39,6 +39,7 @@ class SchemaDirectiveWiringEnvironmentImpl<T : GraphQLDirectiveContainer?>(
39
40
override fun getElement(): T = element
41
override fun getDirective(): GraphQLDirective? = registeredDirective
42
+ override fun getAppliedDirective(): GraphQLAppliedDirective? = appliedDirectives[registeredDirective?.name]
43
override fun getDirectives(): Map<String, GraphQLDirective> = LinkedHashMap(directives)
44
override fun getDirective(directiveName: String): GraphQLDirective = directives[directiveName]!!
45
override fun getAppliedDirectives(): Map<String, GraphQLAppliedDirective> = appliedDirectives
0 commit comments