Skip to content
This repository was archived by the owner on Apr 17, 2023. It is now read-only.

Commit 248ae13

Browse files
author
Enda
authored
Merge pull request #1609 from aerogear/release-notes
docs: add changes to CRUD spec
2 parents 17a2ab6 + 0e112d8 commit 248ae13

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

docs/releases.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,15 @@ Please follow individual releases for more information.
1616

1717
Graphback 0.14 contains a lot of breaking changes that will improve and simplify your application code.
1818

19+
#### CRUD Mutation return types are nullable
20+
21+
Previously, the CRUD mutation resolvers did not allow returning null. These can now be null.
22+
23+
```
24+
- createNote(input: CreateNoteInput!): Note!
25+
+ createNote(input: CreateNoteInput!): Note
26+
```
27+
1928
#### Changed annotation syntax
2029

2130
All annotations now use a uniform syntax format: `@annotation(foo 'bar')` that is similar to GraphQL Directives

0 commit comments

Comments
 (0)