(
*keys: _AttrType, recursion_depth: Optional[int] = None
)
| 2465 | |
| 2466 | @loader_unbound_fn |
| 2467 | def selectinload( |
| 2468 | *keys: _AttrType, recursion_depth: Optional[int] = None |
| 2469 | ) -> _AbstractLoad: |
| 2470 | return _generate_from_keys( |
| 2471 | Load.selectinload, keys, False, {"recursion_depth": recursion_depth} |
| 2472 | ) |
| 2473 | |
| 2474 | |
| 2475 | @loader_unbound_fn |