Function
selectinload
(
*keys: _AttrType,
recursion_depth: Optional[int] = None,
chunksize: Optional[int] = None,
)
Source from the content-addressed store, hash-verified
| 2459 | |
| 2460 | @loader_unbound_fn |
| 2461 | def selectinload( |
| 2462 | *keys: _AttrType, |
| 2463 | recursion_depth: Optional[int] = None, |
| 2464 | chunksize: Optional[int] = None, |
| 2465 | ) -> _AbstractLoad: |
| 2466 | return _generate_from_keys( |
| 2467 | Load.selectinload, |
| 2468 | keys, |
| 2469 | False, |
| 2470 | {"recursion_depth": recursion_depth, "chunksize": chunksize}, |
| 2471 | ) |
| 2472 | |
| 2473 | |
| 2474 | @loader_unbound_fn |