ngbatis icon indicating copy to clipboard operation
ngbatis copied to clipboard

Entity nesting is not supported.

Open CorvusYe opened this issue 2 years ago • 0 comments

Issue from qq feedback.

Such as:

List<ComplexEntity> path();
public class ComplexEntity {
    private Object v1;
    private Object e;
    private Object v2;
}
MATCH (v1)-[e: type1 | type2 ]->(v1)
RETURN v1, e, v2;

Expect: v1 、e and v2 are set into mapped entity at runtime.

CorvusYe avatar Jul 26 '23 08:07 CorvusYe