dnwpark
Results
43
issues of
dnwpark
Given the schema: ```edgeql type Foo { val: tuple; }; ``` the following code fails the assertion ```py foo = default.Foo(val = ("x", [1, 2, 3])) self.client.save(foo) foo.val[1][0] = 9...
bug
ORM
Given a schema: ```edgeql type A { val: int64; }; ``` the following code: ```py original = default.A(val=1) self.client.save(original) mirror_1 = self.client.query_required_single( default.A.select(val=False).limit(1) ) mirror_2 = self.client.query_required_single( default.A.select(val=True).limit(1) ) original.val...
bug
ORM