From 4293777ac2e450517abfb72def9e4b8da5ae5bf0 Mon Sep 17 00:00:00 2001 From: Samuel Vazquez Date: Tue, 16 Aug 2022 10:31:10 -0700 Subject: [PATCH] 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 --- .../client/src/integration/wiremock/__files/schema.graphql | 2 +- .../generator/federation/FederatedSchemaGeneratorTest.kt | 4 ++-- .../generator/federation/FederatedSchemaV2GeneratorTest.kt | 2 +- .../generator/extensions/GraphQLSchemaExtensionsTest.kt | 2 +- gradle.properties | 2 +- .../expediagroup/graphql/plugin/client/DownloadSchemaTest.kt | 2 +- .../graphql/plugin/client/IntrospectSchemaTest.kt | 2 +- .../src/test/resources/introspectionResult.json | 2 +- .../src/test/resources/testSchema.graphql | 2 +- .../android/androidGraphQLClient/app/schema.graphql | 2 +- .../src/integration/client-generator/jacoco/schema.graphql | 2 +- .../graphql/plugin/gradle/GraphQLGradlePluginIT.kt | 2 +- .../graphql/plugin/gradle/tasks/GraphQLGenerateSDLTaskIT.kt | 4 ++-- .../src/test/resources/mocks/IntrospectionResult.json | 2 +- .../src/test/resources/mocks/schema.graphql | 2 +- .../expediagroup/graphql/plugin/maven/GenerateSDLMojoTest.kt | 2 +- .../expediagroup/graphql/plugin/maven/GenerateSDLMojoTest.kt | 2 +- .../expediagroup/graphql/plugin/maven/GenerateSDLMojoTest.kt | 2 +- .../src/integration/wiremock/__files/introspectionResult.json | 2 +- .../src/integration/wiremock/__files/testSchema.graphql | 2 +- .../graphql/plugin/schema/GenerateCustomSDLTest.kt | 2 +- .../com/expediagroup/graphql/plugin/schema/GenerateSDLTest.kt | 2 +- .../graphql/server/spring/routes/RouteConfigurationIT.kt | 2 +- 23 files changed, 25 insertions(+), 25 deletions(-) diff --git a/examples/client/src/integration/wiremock/__files/schema.graphql b/examples/client/src/integration/wiremock/__files/schema.graphql index 07fa7592c3..447ef54e83 100644 --- a/examples/client/src/integration/wiremock/__files/schema.graphql +++ b/examples/client/src/integration/wiremock/__files/schema.graphql @@ -42,7 +42,7 @@ directive @requires(fields: _FieldSet!) on FIELD_DEFINITION "Indicates that given object and/or field can be resolved by multiple subgraphs" directive @shareable on OBJECT | FIELD_DEFINITION -"Directs the executor to skip this field or fragment when the `if`'argument is true." +"Directs the executor to skip this field or fragment when the `if` argument is true." directive @skip( "Skipped when true." if: Boolean! diff --git a/generator/graphql-kotlin-federation/src/test/kotlin/com/expediagroup/graphql/generator/federation/FederatedSchemaGeneratorTest.kt b/generator/graphql-kotlin-federation/src/test/kotlin/com/expediagroup/graphql/generator/federation/FederatedSchemaGeneratorTest.kt index 5902698d28..8141ded4ad 100644 --- a/generator/graphql-kotlin-federation/src/test/kotlin/com/expediagroup/graphql/generator/federation/FederatedSchemaGeneratorTest.kt +++ b/generator/graphql-kotlin-federation/src/test/kotlin/com/expediagroup/graphql/generator/federation/FederatedSchemaGeneratorTest.kt @@ -66,7 +66,7 @@ class FederatedSchemaGeneratorTest { "Specifies required input field set from the base type for a resolver" directive @requires(fields: _FieldSet!) on FIELD_DEFINITION - "Directs the executor to skip this field or fragment when the `if`'argument is true." + "Directs the executor to skip this field or fragment when the `if` argument is true." directive @skip( "Skipped when true." if: Boolean! @@ -180,7 +180,7 @@ class FederatedSchemaGeneratorTest { "Specifies required input field set from the base type for a resolver" directive @requires(fields: _FieldSet!) on FIELD_DEFINITION - "Directs the executor to skip this field or fragment when the `if`'argument is true." + "Directs the executor to skip this field or fragment when the `if` argument is true." directive @skip( "Skipped when true." if: Boolean! diff --git a/generator/graphql-kotlin-federation/src/test/kotlin/com/expediagroup/graphql/generator/federation/FederatedSchemaV2GeneratorTest.kt b/generator/graphql-kotlin-federation/src/test/kotlin/com/expediagroup/graphql/generator/federation/FederatedSchemaV2GeneratorTest.kt index 7046313160..da67157427 100644 --- a/generator/graphql-kotlin-federation/src/test/kotlin/com/expediagroup/graphql/generator/federation/FederatedSchemaV2GeneratorTest.kt +++ b/generator/graphql-kotlin-federation/src/test/kotlin/com/expediagroup/graphql/generator/federation/FederatedSchemaV2GeneratorTest.kt @@ -75,7 +75,7 @@ class FederatedSchemaV2GeneratorTest { "Indicates that given object and/or field can be resolved by multiple subgraphs" directive @shareable on OBJECT | FIELD_DEFINITION - "Directs the executor to skip this field or fragment when the `if`'argument is true." + "Directs the executor to skip this field or fragment when the `if` argument is true." directive @skip( "Skipped when true." if: Boolean! diff --git a/generator/graphql-kotlin-schema-generator/src/test/kotlin/com/expediagroup/graphql/generator/extensions/GraphQLSchemaExtensionsTest.kt b/generator/graphql-kotlin-schema-generator/src/test/kotlin/com/expediagroup/graphql/generator/extensions/GraphQLSchemaExtensionsTest.kt index a8567a81fb..a4cba3902f 100644 --- a/generator/graphql-kotlin-schema-generator/src/test/kotlin/com/expediagroup/graphql/generator/extensions/GraphQLSchemaExtensionsTest.kt +++ b/generator/graphql-kotlin-schema-generator/src/test/kotlin/com/expediagroup/graphql/generator/extensions/GraphQLSchemaExtensionsTest.kt @@ -270,7 +270,7 @@ class GraphQLSchemaExtensionsTest { if: Boolean! ) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT - "Directs the executor to skip this field or fragment when the `if`'argument is true." + "Directs the executor to skip this field or fragment when the `if` argument is true." directive @skip( "Skipped when true." if: Boolean! diff --git a/gradle.properties b/gradle.properties index a860358368..5a4b235b4d 100644 --- a/gradle.properties +++ b/gradle.properties @@ -23,7 +23,7 @@ kotlinxSerializationVersion = 1.3.2 androidPluginVersion = 7.1.2 classGraphVersion = 4.8.149 federationGraphQLVersion = 2.0.4 -graphQLJavaVersion = 19.0 +graphQLJavaVersion = 19.1 graphQLJavaDataLoaderVersion = 3.2.0 jacksonVersion = 2.13.3 # KotlinPoet v1.12.0+ requires Kotlin v1.7 diff --git a/plugins/client/graphql-kotlin-client-generator/src/test/kotlin/com/expediagroup/graphql/plugin/client/DownloadSchemaTest.kt b/plugins/client/graphql-kotlin-client-generator/src/test/kotlin/com/expediagroup/graphql/plugin/client/DownloadSchemaTest.kt index 3de1b92416..7085dc560e 100644 --- a/plugins/client/graphql-kotlin-client-generator/src/test/kotlin/com/expediagroup/graphql/plugin/client/DownloadSchemaTest.kt +++ b/plugins/client/graphql-kotlin-client-generator/src/test/kotlin/com/expediagroup/graphql/plugin/client/DownloadSchemaTest.kt @@ -56,7 +56,7 @@ class DownloadSchemaTest { if: Boolean! ) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT - "Directs the executor to skip this field or fragment when the `if`'argument is true." + "Directs the executor to skip this field or fragment when the `if` argument is true." directive @skip( "Skipped when true." if: Boolean! diff --git a/plugins/client/graphql-kotlin-client-generator/src/test/kotlin/com/expediagroup/graphql/plugin/client/IntrospectSchemaTest.kt b/plugins/client/graphql-kotlin-client-generator/src/test/kotlin/com/expediagroup/graphql/plugin/client/IntrospectSchemaTest.kt index faca7f2c4c..030c362ffb 100755 --- a/plugins/client/graphql-kotlin-client-generator/src/test/kotlin/com/expediagroup/graphql/plugin/client/IntrospectSchemaTest.kt +++ b/plugins/client/graphql-kotlin-client-generator/src/test/kotlin/com/expediagroup/graphql/plugin/client/IntrospectSchemaTest.kt @@ -59,7 +59,7 @@ class IntrospectSchemaTest { if: Boolean! ) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT - "Directs the executor to skip this field or fragment when the `if`'argument is true." + "Directs the executor to skip this field or fragment when the `if` argument is true." directive @skip( "Skipped when true." if: Boolean! diff --git a/plugins/client/graphql-kotlin-client-generator/src/test/resources/introspectionResult.json b/plugins/client/graphql-kotlin-client-generator/src/test/resources/introspectionResult.json index c7308876f6..eae7e5d4c2 100755 --- a/plugins/client/graphql-kotlin-client-generator/src/test/resources/introspectionResult.json +++ b/plugins/client/graphql-kotlin-client-generator/src/test/resources/introspectionResult.json @@ -948,7 +948,7 @@ }, { "name": "skip", - "description": "Directs the executor to skip this field or fragment when the `if`'argument is true.", + "description": "Directs the executor to skip this field or fragment when the `if` argument is true.", "locations": [ "FIELD", "FRAGMENT_SPREAD", diff --git a/plugins/client/graphql-kotlin-client-generator/src/test/resources/testSchema.graphql b/plugins/client/graphql-kotlin-client-generator/src/test/resources/testSchema.graphql index 0ca004b062..5e6f9139c4 100755 --- a/plugins/client/graphql-kotlin-client-generator/src/test/resources/testSchema.graphql +++ b/plugins/client/graphql-kotlin-client-generator/src/test/resources/testSchema.graphql @@ -7,7 +7,7 @@ directive @include( "Included when true." if: Boolean! ) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT -"Directs the executor to skip this field or fragment when the `if`'argument is true." +"Directs the executor to skip this field or fragment when the `if` argument is true." directive @skip( "Skipped when true." if: Boolean! diff --git a/plugins/graphql-kotlin-gradle-plugin/src/integration/android/androidGraphQLClient/app/schema.graphql b/plugins/graphql-kotlin-gradle-plugin/src/integration/android/androidGraphQLClient/app/schema.graphql index 47d69aa505..68d16fc0f7 100755 --- a/plugins/graphql-kotlin-gradle-plugin/src/integration/android/androidGraphQLClient/app/schema.graphql +++ b/plugins/graphql-kotlin-gradle-plugin/src/integration/android/androidGraphQLClient/app/schema.graphql @@ -7,7 +7,7 @@ directive @include( "Included when true." if: Boolean! ) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT -"Directs the executor to skip this field or fragment when the `if`'argument is true." +"Directs the executor to skip this field or fragment when the `if` argument is true." directive @skip( "Skipped when true." if: Boolean! diff --git a/plugins/graphql-kotlin-gradle-plugin/src/integration/client-generator/jacoco/schema.graphql b/plugins/graphql-kotlin-gradle-plugin/src/integration/client-generator/jacoco/schema.graphql index 47d69aa505..68d16fc0f7 100755 --- a/plugins/graphql-kotlin-gradle-plugin/src/integration/client-generator/jacoco/schema.graphql +++ b/plugins/graphql-kotlin-gradle-plugin/src/integration/client-generator/jacoco/schema.graphql @@ -7,7 +7,7 @@ directive @include( "Included when true." if: Boolean! ) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT -"Directs the executor to skip this field or fragment when the `if`'argument is true." +"Directs the executor to skip this field or fragment when the `if` argument is true." directive @skip( "Skipped when true." if: Boolean! diff --git a/plugins/graphql-kotlin-gradle-plugin/src/test/kotlin/com/expediagroup/graphql/plugin/gradle/GraphQLGradlePluginIT.kt b/plugins/graphql-kotlin-gradle-plugin/src/test/kotlin/com/expediagroup/graphql/plugin/gradle/GraphQLGradlePluginIT.kt index 1d12f0a439..3a4face4d7 100755 --- a/plugins/graphql-kotlin-gradle-plugin/src/test/kotlin/com/expediagroup/graphql/plugin/gradle/GraphQLGradlePluginIT.kt +++ b/plugins/graphql-kotlin-gradle-plugin/src/test/kotlin/com/expediagroup/graphql/plugin/gradle/GraphQLGradlePluginIT.kt @@ -547,7 +547,7 @@ class GraphQLGradlePluginIT : GraphQLGradlePluginAbstractIT() { "Specifies required input field set from the base type for a resolver" directive @requires(fields: _FieldSet!) on FIELD_DEFINITION - "Directs the executor to skip this field or fragment when the `if`'argument is true." + "Directs the executor to skip this field or fragment when the `if` argument is true." directive @skip( "Skipped when true." if: Boolean! diff --git a/plugins/graphql-kotlin-gradle-plugin/src/test/kotlin/com/expediagroup/graphql/plugin/gradle/tasks/GraphQLGenerateSDLTaskIT.kt b/plugins/graphql-kotlin-gradle-plugin/src/test/kotlin/com/expediagroup/graphql/plugin/gradle/tasks/GraphQLGenerateSDLTaskIT.kt index 9fb09fd756..b11cbc0076 100644 --- a/plugins/graphql-kotlin-gradle-plugin/src/test/kotlin/com/expediagroup/graphql/plugin/gradle/tasks/GraphQLGenerateSDLTaskIT.kt +++ b/plugins/graphql-kotlin-gradle-plugin/src/test/kotlin/com/expediagroup/graphql/plugin/gradle/tasks/GraphQLGenerateSDLTaskIT.kt @@ -46,7 +46,7 @@ internal val DEFAULT_SCHEMA = if: Boolean! ) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT - "Directs the executor to skip this field or fragment when the `if`'argument is true." + "Directs the executor to skip this field or fragment when the `if` argument is true." directive @skip( "Skipped when true." if: Boolean! @@ -96,7 +96,7 @@ internal val FEDERATED_SCHEMA = "Specifies required input field set from the base type for a resolver" directive @requires(fields: _FieldSet!) on FIELD_DEFINITION - "Directs the executor to skip this field or fragment when the `if`'argument is true." + "Directs the executor to skip this field or fragment when the `if` argument is true." directive @skip( "Skipped when true." if: Boolean! diff --git a/plugins/graphql-kotlin-gradle-plugin/src/test/resources/mocks/IntrospectionResult.json b/plugins/graphql-kotlin-gradle-plugin/src/test/resources/mocks/IntrospectionResult.json index c759609a48..37d8a576c1 100755 --- a/plugins/graphql-kotlin-gradle-plugin/src/test/resources/mocks/IntrospectionResult.json +++ b/plugins/graphql-kotlin-gradle-plugin/src/test/resources/mocks/IntrospectionResult.json @@ -1744,7 +1744,7 @@ }, { "name": "skip", - "description": "Directs the executor to skip this field or fragment when the `if`'argument is true.", + "description": "Directs the executor to skip this field or fragment when the `if` argument is true.", "locations": [ "FIELD", "FRAGMENT_SPREAD", diff --git a/plugins/graphql-kotlin-gradle-plugin/src/test/resources/mocks/schema.graphql b/plugins/graphql-kotlin-gradle-plugin/src/test/resources/mocks/schema.graphql index e21436af9b..8a5e827e78 100755 --- a/plugins/graphql-kotlin-gradle-plugin/src/test/resources/mocks/schema.graphql +++ b/plugins/graphql-kotlin-gradle-plugin/src/test/resources/mocks/schema.graphql @@ -7,7 +7,7 @@ directive @include( "Included when true." if: Boolean! ) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT -"Directs the executor to skip this field or fragment when the `if`'argument is true." +"Directs the executor to skip this field or fragment when the `if` argument is true." directive @skip( "Skipped when true." if: Boolean! diff --git a/plugins/graphql-kotlin-maven-plugin/src/integration/generate-sdl-federated/src/test/kotlin/com/expediagroup/graphql/plugin/maven/GenerateSDLMojoTest.kt b/plugins/graphql-kotlin-maven-plugin/src/integration/generate-sdl-federated/src/test/kotlin/com/expediagroup/graphql/plugin/maven/GenerateSDLMojoTest.kt index 29acf59e80..f52d3e044f 100755 --- a/plugins/graphql-kotlin-maven-plugin/src/integration/generate-sdl-federated/src/test/kotlin/com/expediagroup/graphql/plugin/maven/GenerateSDLMojoTest.kt +++ b/plugins/graphql-kotlin-maven-plugin/src/integration/generate-sdl-federated/src/test/kotlin/com/expediagroup/graphql/plugin/maven/GenerateSDLMojoTest.kt @@ -67,7 +67,7 @@ class GenerateSDLMojoTest { "Specifies required input field set from the base type for a resolver" directive @requires(fields: _FieldSet!) on FIELD_DEFINITION - "Directs the executor to skip this field or fragment when the `if`'argument is true." + "Directs the executor to skip this field or fragment when the `if` argument is true." directive @skip( "Skipped when true." if: Boolean! diff --git a/plugins/graphql-kotlin-maven-plugin/src/integration/generate-sdl-hooks/src/test/kotlin/com/expediagroup/graphql/plugin/maven/GenerateSDLMojoTest.kt b/plugins/graphql-kotlin-maven-plugin/src/integration/generate-sdl-hooks/src/test/kotlin/com/expediagroup/graphql/plugin/maven/GenerateSDLMojoTest.kt index e4e8e917e7..f86ca24cd3 100755 --- a/plugins/graphql-kotlin-maven-plugin/src/integration/generate-sdl-hooks/src/test/kotlin/com/expediagroup/graphql/plugin/maven/GenerateSDLMojoTest.kt +++ b/plugins/graphql-kotlin-maven-plugin/src/integration/generate-sdl-hooks/src/test/kotlin/com/expediagroup/graphql/plugin/maven/GenerateSDLMojoTest.kt @@ -67,7 +67,7 @@ class GenerateSDLMojoTest { "Specifies required input field set from the base type for a resolver" directive @requires(fields: _FieldSet!) on FIELD_DEFINITION - "Directs the executor to skip this field or fragment when the `if`'argument is true." + "Directs the executor to skip this field or fragment when the `if` argument is true." directive @skip( "Skipped when true." if: Boolean! diff --git a/plugins/graphql-kotlin-maven-plugin/src/integration/generate-sdl/src/test/kotlin/com/expediagroup/graphql/plugin/maven/GenerateSDLMojoTest.kt b/plugins/graphql-kotlin-maven-plugin/src/integration/generate-sdl/src/test/kotlin/com/expediagroup/graphql/plugin/maven/GenerateSDLMojoTest.kt index 6880b8ce63..486ef21d59 100755 --- a/plugins/graphql-kotlin-maven-plugin/src/integration/generate-sdl/src/test/kotlin/com/expediagroup/graphql/plugin/maven/GenerateSDLMojoTest.kt +++ b/plugins/graphql-kotlin-maven-plugin/src/integration/generate-sdl/src/test/kotlin/com/expediagroup/graphql/plugin/maven/GenerateSDLMojoTest.kt @@ -52,7 +52,7 @@ class GenerateSDLMojoTest { if: Boolean! ) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT - "Directs the executor to skip this field or fragment when the `if`'argument is true." + "Directs the executor to skip this field or fragment when the `if` argument is true." directive @skip( "Skipped when true." if: Boolean! diff --git a/plugins/graphql-kotlin-maven-plugin/src/integration/wiremock/__files/introspectionResult.json b/plugins/graphql-kotlin-maven-plugin/src/integration/wiremock/__files/introspectionResult.json index 7c65592084..0e02368a43 100755 --- a/plugins/graphql-kotlin-maven-plugin/src/integration/wiremock/__files/introspectionResult.json +++ b/plugins/graphql-kotlin-maven-plugin/src/integration/wiremock/__files/introspectionResult.json @@ -1768,7 +1768,7 @@ }, { "name": "skip", - "description": "Directs the executor to skip this field or fragment when the `if`'argument is true.", + "description": "Directs the executor to skip this field or fragment when the `if` argument is true.", "locations": [ "FIELD", "FRAGMENT_SPREAD", diff --git a/plugins/graphql-kotlin-maven-plugin/src/integration/wiremock/__files/testSchema.graphql b/plugins/graphql-kotlin-maven-plugin/src/integration/wiremock/__files/testSchema.graphql index 602749f1d7..dd8d34d0d4 100755 --- a/plugins/graphql-kotlin-maven-plugin/src/integration/wiremock/__files/testSchema.graphql +++ b/plugins/graphql-kotlin-maven-plugin/src/integration/wiremock/__files/testSchema.graphql @@ -7,7 +7,7 @@ directive @include( "Included when true." if: Boolean! ) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT -"Directs the executor to skip this field or fragment when the `if`'argument is true." +"Directs the executor to skip this field or fragment when the `if` argument is true." directive @skip( "Skipped when true." if: Boolean! diff --git a/plugins/schema/graphql-kotlin-sdl-generator/src/integrationTest/kotlin/com/expediagroup/graphql/plugin/schema/GenerateCustomSDLTest.kt b/plugins/schema/graphql-kotlin-sdl-generator/src/integrationTest/kotlin/com/expediagroup/graphql/plugin/schema/GenerateCustomSDLTest.kt index d072527e8b..4d978722bb 100644 --- a/plugins/schema/graphql-kotlin-sdl-generator/src/integrationTest/kotlin/com/expediagroup/graphql/plugin/schema/GenerateCustomSDLTest.kt +++ b/plugins/schema/graphql-kotlin-sdl-generator/src/integrationTest/kotlin/com/expediagroup/graphql/plugin/schema/GenerateCustomSDLTest.kt @@ -56,7 +56,7 @@ class GenerateCustomSDLTest { "Specifies required input field set from the base type for a resolver" directive @requires(fields: _FieldSet!) on FIELD_DEFINITION - "Directs the executor to skip this field or fragment when the `if`'argument is true." + "Directs the executor to skip this field or fragment when the `if` argument is true." directive @skip( "Skipped when true." if: Boolean! diff --git a/plugins/schema/graphql-kotlin-sdl-generator/src/test/kotlin/com/expediagroup/graphql/plugin/schema/GenerateSDLTest.kt b/plugins/schema/graphql-kotlin-sdl-generator/src/test/kotlin/com/expediagroup/graphql/plugin/schema/GenerateSDLTest.kt index d90331fb5c..1f7889e8cc 100644 --- a/plugins/schema/graphql-kotlin-sdl-generator/src/test/kotlin/com/expediagroup/graphql/plugin/schema/GenerateSDLTest.kt +++ b/plugins/schema/graphql-kotlin-sdl-generator/src/test/kotlin/com/expediagroup/graphql/plugin/schema/GenerateSDLTest.kt @@ -42,7 +42,7 @@ class GenerateSDLTest { if: Boolean! ) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT - "Directs the executor to skip this field or fragment when the `if`'argument is true." + "Directs the executor to skip this field or fragment when the `if` argument is true." directive @skip( "Skipped when true." if: Boolean! diff --git a/servers/graphql-kotlin-spring-server/src/test/kotlin/com/expediagroup/graphql/server/spring/routes/RouteConfigurationIT.kt b/servers/graphql-kotlin-spring-server/src/test/kotlin/com/expediagroup/graphql/server/spring/routes/RouteConfigurationIT.kt index a595fa6cde..2e6e45e871 100644 --- a/servers/graphql-kotlin-spring-server/src/test/kotlin/com/expediagroup/graphql/server/spring/routes/RouteConfigurationIT.kt +++ b/servers/graphql-kotlin-spring-server/src/test/kotlin/com/expediagroup/graphql/server/spring/routes/RouteConfigurationIT.kt @@ -84,7 +84,7 @@ class RouteConfigurationIT(@Autowired private val testClient: WebTestClient) { if: Boolean! ) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT - "Directs the executor to skip this field or fragment when the `if`'argument is true." + "Directs the executor to skip this field or fragment when the `if` argument is true." directive @skip( "Skipped when true." if: Boolean!