(self)
| 1620 | |
| 1621 | @property |
| 1622 | def mapper(self) -> Optional[Mapper[Any]]: |
| 1623 | mp: Optional[Mapper[Any]] = self.exprs[0]._annotations.get( |
| 1624 | "parentmapper", None |
| 1625 | ) |
| 1626 | return mp |
| 1627 | |
| 1628 | @property |
| 1629 | def entity(self) -> Optional[_InternalEntityType[Any]]: |