babyfish-ct / jimmer

A revolutionary ORM framework for both java and kotlin.
Apache License 2.0
865 stars 84 forks source link

[bug] Property-level fuzzy doesn't override input-level static #684

Closed belovaf closed 1 month ago

belovaf commented 1 month ago
static input ParentInput {
  fuzzy child {
    name
  } 
} 

When I call sql.save(ParentInput()) jimmer tries to disassociate Parent and Child.

And this dto works as expected:

fuzzy input ParentInput {
  child {
    name
  } 
} 
babyfish-ct commented 1 month ago

Try 0.8.184