Closed belovaf closed 1 month ago
static input ParentInput { fuzzy child { name } }
When I call sql.save(ParentInput()) jimmer tries to disassociate Parent and Child.
sql.save(ParentInput())
Parent
Child
And this dto works as expected:
fuzzy input ParentInput { child { name } }
Try 0.8.184
0.8.184
When I call
sql.save(ParentInput())
jimmer tries to disassociateParent
andChild
.And this dto works as expected: