Fix syncing unset property with default setting value to None instead of default. (#910)
Given a schema:
```edgeql
type Az {
multi val: int64 {
default := {-1, -2, -3};
};
};
```
The following code was failing its assertion:
```py
with_unset = default.Az()
self.client.sync(with_unset)
assert with_unset.val == [-1, -2, -3]
``` D
dnwpark committed
d0328e1372107b3c2d68a178d654fd047cd02744
Parent: c93c235
Committed by GitHub <noreply@github.com>
on 9/12/2025, 6:51:14 PM