-
Notifications
You must be signed in to change notification settings - Fork 150
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5630 from neo4j/remove-deprecated-update-input
Remove deprecated update input
- Loading branch information
Showing
136 changed files
with
2,259 additions
and
6,458 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,37 @@ | ||
--- | ||
"@neo4j/graphql": major | ||
--- | ||
|
||
Remove deprecated top level arguments for nested operations in mutations: | ||
|
||
- create | ||
- delete | ||
- connect | ||
- disconnect | ||
- connectOrCreate | ||
|
||
For example, the following is no longer valid: | ||
|
||
_invalid_ | ||
|
||
```graphql | ||
mutation UpdatePeople { | ||
updatePeople(create: { movies: { node: { title: "The Good" } } }) { | ||
people { | ||
name | ||
} | ||
} | ||
} | ||
``` | ||
|
||
_valid_ | ||
|
||
```graphql | ||
mutation UpdatePeople { | ||
updatePeople(update: { movies: { create: { node: { title: "The Good" } } } }) { | ||
people { | ||
name | ||
} | ||
} | ||
} | ||
``` |
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
File renamed without changes.
Oops, something went wrong.