Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 0 additions & 29 deletions modules/ROOT/pages/migration/index.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -466,35 +466,6 @@ type Person @node {
----
|===

=== Deprecated the implicit equality filters

Previously, if a field was present in a filter without specifying the operator, it was treated as an equality filter.
This behavior is now deprecated and will be removed in the future.
Use the `_EQ` filter instead.

[cols="1,1"]
|===
|Before | Now

a|
[source, graphql, indent=0]
----
{
movies(where: { title: "The Matrix" }) {
title
}
}
----
a|
[source, graphql, indent=0]
----
{
movies(where: { title_EQ: "The Matrix" }) {
title
}
}
----
|===

=== Deprecated pagination `options` argument

Expand Down