File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
src/main/kotlin/graphql/kickstart/tools/directive Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 4
4
5
5
<groupId >com.graphql-java-kickstart</groupId >
6
6
<artifactId >graphql-java-tools</artifactId >
7
- <version >12.1.1 -SNAPSHOT</version >
7
+ <version >14.0.0 -SNAPSHOT</version >
8
8
<packaging >jar</packaging >
9
9
10
10
<name >GraphQL Java Tools</name >
17
17
<kotlin .version>1.6.21</kotlin .version>
18
18
<kotlin-coroutines .version>1.6.2</kotlin-coroutines .version>
19
19
<jackson .version>2.13.3</jackson .version>
20
- <graphql-java .version>18.2 </graphql-java .version>
20
+ <graphql-java .version>19.1 </graphql-java .version>
21
21
<reactive-streams .version>1.0.4</reactive-streams .version>
22
22
23
23
<maven .compiler.source>${java.version} </maven .compiler.source>
155
155
<groupId >com.graphql-java</groupId >
156
156
<artifactId >graphql-java</artifactId >
157
157
</dependency >
158
+ <dependency >
159
+ <groupId >org.antlr</groupId >
160
+ <artifactId >antlr4-runtime</artifactId >
161
+ <version >4.10.1</version >
162
+ </dependency >
158
163
<dependency >
159
164
<groupId >com.fasterxml</groupId >
160
165
<artifactId >classmate</artifactId >
Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ class SchemaDirectiveWiringEnvironmentImpl<T : GraphQLDirectiveContainer?>(
39
39
40
40
override fun getElement (): T = element
41
41
override fun getDirective (): GraphQLDirective ? = registeredDirective
42
+ override fun getAppliedDirective (): GraphQLAppliedDirective ? = appliedDirectives[registeredDirective?.name]
42
43
override fun getDirectives (): Map <String , GraphQLDirective > = LinkedHashMap (directives)
43
44
override fun getDirective (directiveName : String ): GraphQLDirective = directives[directiveName]!!
44
45
override fun getAppliedDirectives (): Map <String , GraphQLAppliedDirective > = appliedDirectives
You can’t perform that action at this time.
0 commit comments