5.0.0-alpha.2 (2021-10-27)
Bug Fixes
BREAKING CHANGES
- To delete a field via the GraphQL API, the field value has to be set to
null
. Previously, setting a field value tonull
would save a null value in the database, which was not according to the GraphQL specs. To delete a file field usefile: null
, the previous way of usingfile: { file: null }
has become obsolete. (626fad2)