Skip to content

Commit 499230e

Browse files
use non deprecated syntaxes on breaking changes
1 parent 2b7a6b9 commit 499230e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

modules/ROOT/pages/migration/index.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ a|
5454
[source, graphql, indent=0]
5555
----
5656
query {
57-
movies(where: { NOT: { title: "The Matrix" } }) {
57+
movies(where: { NOT: { title_EQ: "The Matrix" } }) {
5858
title
5959
}
6060
}
@@ -78,7 +78,7 @@ a|
7878
[source, graphql, indent=0]
7979
----
8080
query {
81-
movies(where: { actors_NOT: { name: "Keanu" } }) {
81+
movies(where: { actors_NOT: { name_EQ: "Keanu" } }) {
8282
title
8383
}
8484
}
@@ -87,7 +87,7 @@ a|
8787
[source, graphql, indent=0]
8888
----
8989
query {
90-
movies(where: { actors_NONE: { name: "Keanu" } }) {
90+
movies(where: { actors_NONE: { name_EQ: "Keanu" } }) {
9191
title
9292
}
9393
}

0 commit comments

Comments
 (0)