File tree Expand file tree Collapse file tree 2 files changed +10
-7
lines changed
test/unit/should_replace_federation_directives Expand file tree Collapse file tree 2 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -6,13 +6,13 @@ repositories {
6
6
7
7
plugins {
8
8
kotlin(" jvm" ) version " 2.0.20"
9
- id(" com.expediagroup.graphql" ) version " 7.1.5 "
9
+ id(" com.expediagroup.graphql" ) version " 8.0.0 "
10
10
}
11
11
12
12
dependencies {
13
- implementation(" com.expediagroup" , " graphql-kotlin-schema-generator" , " 7.1.5 " )
14
- implementation(" com.expediagroup" , " graphql-kotlin-server" , " 7.1.5 " )
15
- implementation(" com.expediagroup" , " graphql-kotlin-federation" , " 7.1.5 " )
13
+ implementation(" com.expediagroup" , " graphql-kotlin-schema-generator" , " 8.0.0 " )
14
+ implementation(" com.expediagroup" , " graphql-kotlin-server" , " 8.0.0 " )
15
+ implementation(" com.expediagroup" , " graphql-kotlin-federation" , " 8.0.0 " )
16
16
}
17
17
18
18
sourceSets {
Original file line number Diff line number Diff line change 1
- directive @extends on OBJECT
2
- directive @external on FIELD_DEFINITION
3
- directive @key (fields : FieldSet ! ) repeatable on OBJECT | INTERFACE
1
+ directive @extends on OBJECT | INTERFACE
2
+ directive @external on OBJECT | FIELD_DEFINITION
3
+ directive @key (
4
+ fields : FieldSet !
5
+ resolvable : Boolean = true
6
+ ) repeatable on OBJECT | INTERFACE
4
7
scalar FieldSet
5
8
6
9
type FederatedType @extends @key (fields : " some field" ) {
You can’t perform that action at this time.
0 commit comments