Skip to content

Commit

Permalink
Create kind-tigers-sleep.md
Browse files Browse the repository at this point in the history
  • Loading branch information
MacondoExpress authored Oct 4, 2024
1 parent fabd6a7 commit 87917e4
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .changeset/kind-tigers-sleep.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
"@neo4j/graphql": major
---

Removed deprecated `_NOT` filters, use the Boolean operator `NOT` instead.

** deprecated syntax **
```graphql
query {
movies(where: { title_NOT: "The Matrix" }) {
title
}
}

```

** recommended syntax **

```graphql
query {
movies(where: { NOT: { title: "The Matrix" } }) {
title
}
}
```

As part of the change, the option: `negationFilters` was removed from the `excludeDeprecatedFields` settings.

0 comments on commit 87917e4

Please sign in to comment.