Read the JPA specification about how path navigation must be implemented: https://jakarta.ee/specifications/persistence/3.0/jakarta-persistence-spec-3.0.html#path-expressions What you are seeing here is inner join semantics. If you want left join semantics, add left joins and use the aliases. |