Skip to content

Commit 4293777

Browse files
samuelAndalonsamvazquez
andauthored
feat: update graphql-java 19.1 (#1519)
* feat: update graphql-java 19.1 * feat: graphql java directive skip removed unneded quote Co-authored-by: samvazquez <[email protected]>
1 parent dc3f845 commit 4293777

File tree

23 files changed

+25
-25
lines changed

23 files changed

+25
-25
lines changed

examples/client/src/integration/wiremock/__files/schema.graphql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ directive @requires(fields: _FieldSet!) on FIELD_DEFINITION
4242
"Indicates that given object and/or field can be resolved by multiple subgraphs"
4343
directive @shareable on OBJECT | FIELD_DEFINITION
4444

45-
"Directs the executor to skip this field or fragment when the `if`'argument is true."
45+
"Directs the executor to skip this field or fragment when the `if` argument is true."
4646
directive @skip(
4747
"Skipped when true."
4848
if: Boolean!

generator/graphql-kotlin-federation/src/test/kotlin/com/expediagroup/graphql/generator/federation/FederatedSchemaGeneratorTest.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ class FederatedSchemaGeneratorTest {
6666
"Specifies required input field set from the base type for a resolver"
6767
directive @requires(fields: _FieldSet!) on FIELD_DEFINITION
6868
69-
"Directs the executor to skip this field or fragment when the `if`'argument is true."
69+
"Directs the executor to skip this field or fragment when the `if` argument is true."
7070
directive @skip(
7171
"Skipped when true."
7272
if: Boolean!
@@ -180,7 +180,7 @@ class FederatedSchemaGeneratorTest {
180180
"Specifies required input field set from the base type for a resolver"
181181
directive @requires(fields: _FieldSet!) on FIELD_DEFINITION
182182
183-
"Directs the executor to skip this field or fragment when the `if`'argument is true."
183+
"Directs the executor to skip this field or fragment when the `if` argument is true."
184184
directive @skip(
185185
"Skipped when true."
186186
if: Boolean!

generator/graphql-kotlin-federation/src/test/kotlin/com/expediagroup/graphql/generator/federation/FederatedSchemaV2GeneratorTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ class FederatedSchemaV2GeneratorTest {
7575
"Indicates that given object and/or field can be resolved by multiple subgraphs"
7676
directive @shareable on OBJECT | FIELD_DEFINITION
7777
78-
"Directs the executor to skip this field or fragment when the `if`'argument is true."
78+
"Directs the executor to skip this field or fragment when the `if` argument is true."
7979
directive @skip(
8080
"Skipped when true."
8181
if: Boolean!

generator/graphql-kotlin-schema-generator/src/test/kotlin/com/expediagroup/graphql/generator/extensions/GraphQLSchemaExtensionsTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ class GraphQLSchemaExtensionsTest {
270270
if: Boolean!
271271
) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT
272272
273-
"Directs the executor to skip this field or fragment when the `if`'argument is true."
273+
"Directs the executor to skip this field or fragment when the `if` argument is true."
274274
directive @skip(
275275
"Skipped when true."
276276
if: Boolean!

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ kotlinxSerializationVersion = 1.3.2
2323
androidPluginVersion = 7.1.2
2424
classGraphVersion = 4.8.149
2525
federationGraphQLVersion = 2.0.4
26-
graphQLJavaVersion = 19.0
26+
graphQLJavaVersion = 19.1
2727
graphQLJavaDataLoaderVersion = 3.2.0
2828
jacksonVersion = 2.13.3
2929
# KotlinPoet v1.12.0+ requires Kotlin v1.7

plugins/client/graphql-kotlin-client-generator/src/test/kotlin/com/expediagroup/graphql/plugin/client/DownloadSchemaTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ class DownloadSchemaTest {
5656
if: Boolean!
5757
) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT
5858
59-
"Directs the executor to skip this field or fragment when the `if`'argument is true."
59+
"Directs the executor to skip this field or fragment when the `if` argument is true."
6060
directive @skip(
6161
"Skipped when true."
6262
if: Boolean!

plugins/client/graphql-kotlin-client-generator/src/test/kotlin/com/expediagroup/graphql/plugin/client/IntrospectSchemaTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ class IntrospectSchemaTest {
5959
if: Boolean!
6060
) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT
6161
62-
"Directs the executor to skip this field or fragment when the `if`'argument is true."
62+
"Directs the executor to skip this field or fragment when the `if` argument is true."
6363
directive @skip(
6464
"Skipped when true."
6565
if: Boolean!

plugins/client/graphql-kotlin-client-generator/src/test/resources/introspectionResult.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -948,7 +948,7 @@
948948
},
949949
{
950950
"name": "skip",
951-
"description": "Directs the executor to skip this field or fragment when the `if`'argument is true.",
951+
"description": "Directs the executor to skip this field or fragment when the `if` argument is true.",
952952
"locations": [
953953
"FIELD",
954954
"FRAGMENT_SPREAD",

plugins/client/graphql-kotlin-client-generator/src/test/resources/testSchema.graphql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ directive @include(
77
"Included when true."
88
if: Boolean!
99
) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT
10-
"Directs the executor to skip this field or fragment when the `if`'argument is true."
10+
"Directs the executor to skip this field or fragment when the `if` argument is true."
1111
directive @skip(
1212
"Skipped when true."
1313
if: Boolean!

plugins/graphql-kotlin-gradle-plugin/src/integration/android/androidGraphQLClient/app/schema.graphql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ directive @include(
77
"Included when true."
88
if: Boolean!
99
) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT
10-
"Directs the executor to skip this field or fragment when the `if`'argument is true."
10+
"Directs the executor to skip this field or fragment when the `if` argument is true."
1111
directive @skip(
1212
"Skipped when true."
1313
if: Boolean!

plugins/graphql-kotlin-gradle-plugin/src/integration/client-generator/jacoco/schema.graphql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ directive @include(
77
"Included when true."
88
if: Boolean!
99
) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT
10-
"Directs the executor to skip this field or fragment when the `if`'argument is true."
10+
"Directs the executor to skip this field or fragment when the `if` argument is true."
1111
directive @skip(
1212
"Skipped when true."
1313
if: Boolean!

plugins/graphql-kotlin-gradle-plugin/src/test/kotlin/com/expediagroup/graphql/plugin/gradle/GraphQLGradlePluginIT.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,7 @@ class GraphQLGradlePluginIT : GraphQLGradlePluginAbstractIT() {
547547
"Specifies required input field set from the base type for a resolver"
548548
directive @requires(fields: _FieldSet!) on FIELD_DEFINITION
549549
550-
"Directs the executor to skip this field or fragment when the `if`'argument is true."
550+
"Directs the executor to skip this field or fragment when the `if` argument is true."
551551
directive @skip(
552552
"Skipped when true."
553553
if: Boolean!

plugins/graphql-kotlin-gradle-plugin/src/test/kotlin/com/expediagroup/graphql/plugin/gradle/tasks/GraphQLGenerateSDLTaskIT.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ internal val DEFAULT_SCHEMA =
4646
if: Boolean!
4747
) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT
4848
49-
"Directs the executor to skip this field or fragment when the `if`'argument is true."
49+
"Directs the executor to skip this field or fragment when the `if` argument is true."
5050
directive @skip(
5151
"Skipped when true."
5252
if: Boolean!
@@ -96,7 +96,7 @@ internal val FEDERATED_SCHEMA =
9696
"Specifies required input field set from the base type for a resolver"
9797
directive @requires(fields: _FieldSet!) on FIELD_DEFINITION
9898
99-
"Directs the executor to skip this field or fragment when the `if`'argument is true."
99+
"Directs the executor to skip this field or fragment when the `if` argument is true."
100100
directive @skip(
101101
"Skipped when true."
102102
if: Boolean!

plugins/graphql-kotlin-gradle-plugin/src/test/resources/mocks/IntrospectionResult.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1744,7 +1744,7 @@
17441744
},
17451745
{
17461746
"name": "skip",
1747-
"description": "Directs the executor to skip this field or fragment when the `if`'argument is true.",
1747+
"description": "Directs the executor to skip this field or fragment when the `if` argument is true.",
17481748
"locations": [
17491749
"FIELD",
17501750
"FRAGMENT_SPREAD",

plugins/graphql-kotlin-gradle-plugin/src/test/resources/mocks/schema.graphql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ directive @include(
77
"Included when true."
88
if: Boolean!
99
) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT
10-
"Directs the executor to skip this field or fragment when the `if`'argument is true."
10+
"Directs the executor to skip this field or fragment when the `if` argument is true."
1111
directive @skip(
1212
"Skipped when true."
1313
if: Boolean!

plugins/graphql-kotlin-maven-plugin/src/integration/generate-sdl-federated/src/test/kotlin/com/expediagroup/graphql/plugin/maven/GenerateSDLMojoTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ class GenerateSDLMojoTest {
6767
"Specifies required input field set from the base type for a resolver"
6868
directive @requires(fields: _FieldSet!) on FIELD_DEFINITION
6969
70-
"Directs the executor to skip this field or fragment when the `if`'argument is true."
70+
"Directs the executor to skip this field or fragment when the `if` argument is true."
7171
directive @skip(
7272
"Skipped when true."
7373
if: Boolean!

plugins/graphql-kotlin-maven-plugin/src/integration/generate-sdl-hooks/src/test/kotlin/com/expediagroup/graphql/plugin/maven/GenerateSDLMojoTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ class GenerateSDLMojoTest {
6767
"Specifies required input field set from the base type for a resolver"
6868
directive @requires(fields: _FieldSet!) on FIELD_DEFINITION
6969
70-
"Directs the executor to skip this field or fragment when the `if`'argument is true."
70+
"Directs the executor to skip this field or fragment when the `if` argument is true."
7171
directive @skip(
7272
"Skipped when true."
7373
if: Boolean!

plugins/graphql-kotlin-maven-plugin/src/integration/generate-sdl/src/test/kotlin/com/expediagroup/graphql/plugin/maven/GenerateSDLMojoTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ class GenerateSDLMojoTest {
5252
if: Boolean!
5353
) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT
5454
55-
"Directs the executor to skip this field or fragment when the `if`'argument is true."
55+
"Directs the executor to skip this field or fragment when the `if` argument is true."
5656
directive @skip(
5757
"Skipped when true."
5858
if: Boolean!

plugins/graphql-kotlin-maven-plugin/src/integration/wiremock/__files/introspectionResult.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1768,7 +1768,7 @@
17681768
},
17691769
{
17701770
"name": "skip",
1771-
"description": "Directs the executor to skip this field or fragment when the `if`'argument is true.",
1771+
"description": "Directs the executor to skip this field or fragment when the `if` argument is true.",
17721772
"locations": [
17731773
"FIELD",
17741774
"FRAGMENT_SPREAD",

plugins/graphql-kotlin-maven-plugin/src/integration/wiremock/__files/testSchema.graphql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ directive @include(
77
"Included when true."
88
if: Boolean!
99
) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT
10-
"Directs the executor to skip this field or fragment when the `if`'argument is true."
10+
"Directs the executor to skip this field or fragment when the `if` argument is true."
1111
directive @skip(
1212
"Skipped when true."
1313
if: Boolean!

plugins/schema/graphql-kotlin-sdl-generator/src/integrationTest/kotlin/com/expediagroup/graphql/plugin/schema/GenerateCustomSDLTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ class GenerateCustomSDLTest {
5656
"Specifies required input field set from the base type for a resolver"
5757
directive @requires(fields: _FieldSet!) on FIELD_DEFINITION
5858
59-
"Directs the executor to skip this field or fragment when the `if`'argument is true."
59+
"Directs the executor to skip this field or fragment when the `if` argument is true."
6060
directive @skip(
6161
"Skipped when true."
6262
if: Boolean!

plugins/schema/graphql-kotlin-sdl-generator/src/test/kotlin/com/expediagroup/graphql/plugin/schema/GenerateSDLTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class GenerateSDLTest {
4242
if: Boolean!
4343
) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT
4444
45-
"Directs the executor to skip this field or fragment when the `if`'argument is true."
45+
"Directs the executor to skip this field or fragment when the `if` argument is true."
4646
directive @skip(
4747
"Skipped when true."
4848
if: Boolean!

servers/graphql-kotlin-spring-server/src/test/kotlin/com/expediagroup/graphql/server/spring/routes/RouteConfigurationIT.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ class RouteConfigurationIT(@Autowired private val testClient: WebTestClient) {
8484
if: Boolean!
8585
) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT
8686
87-
"Directs the executor to skip this field or fragment when the `if`'argument is true."
87+
"Directs the executor to skip this field or fragment when the `if` argument is true."
8888
directive @skip(
8989
"Skipped when true."
9090
if: Boolean!

0 commit comments

Comments
 (0)