-
Notifications
You must be signed in to change notification settings - Fork 152
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove implicit filter fields (#5801)
* Remove unused deprecation * Remove implicit filter fields * Create red-cows-shop.md * Keep placeholder file for deprecations * Add subscriptions filtering function for EQ
- Loading branch information
1 parent
99cb9aa
commit 95ce8bb
Showing
118 changed files
with
323 additions
and
2,512 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
"@neo4j/graphql": major | ||
--- | ||
|
||
Implicit filtering fields have been removed, please use the explicit versions: | ||
|
||
```graphql | ||
# Old syntax | ||
{ | ||
movies(where: { title: "The Matrix" }) { | ||
title | ||
} | ||
} | ||
|
||
# New syntax | ||
{ | ||
movies(where: { title_EQ: "The Matrix" }) { | ||
title | ||
} | ||
} | ||
``` | ||
|
||
The `implicitEqualFilters` option of `excludeDeprecatedFields` has been removed. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.