Fetch the first row for the current queryset, if present.
(self, session: AsyncSession)
| 56 | return await self.queryset.all(session) |
| 57 | |
| 58 | async def first(self, session: AsyncSession) -> ModelT | None: |
| 59 | """Fetch the first row for the current queryset, if present.""" |
| 60 | return await self.queryset.first(session) |
| 61 | |
| 62 | async def first_or_404( |
| 63 | self, |
no outgoing calls
no test coverage detected