(
base: Type[Any],
direction: RelationshipDirection,
return_fn: Callable[..., Relationship[Any]],
attrname: str,
local_cls: Type[Any],
referred_cls: Type[Any],
**kw: Any,
)
| 923 | |
| 924 | @overload |
| 925 | def generate_relationship( |
| 926 | base: Type[Any], |
| 927 | direction: RelationshipDirection, |
| 928 | return_fn: Callable[..., Relationship[Any]], |
| 929 | attrname: str, |
| 930 | local_cls: Type[Any], |
| 931 | referred_cls: Type[Any], |
| 932 | **kw: Any, |
| 933 | ) -> Relationship[Any]: ... |
| 934 | |
| 935 | |
| 936 | @overload |
no outgoing calls