I want to query this structure:
A -> B B -> C B -> D
what\'s the syntax to do this with the Load interface, the documentation is not v
Just add another .options(...) with a new relationship path:
.options(...)
q = ( session .query(A) .options(joinedload(A.b).joinedload(B.c)) .options(joinedload(A.b).joinedload(B.d)) )