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!

0 commit comments

Comments
 (0)