Fetch all rows for the current queryset.
(self, session: AsyncSession)
| 52 | return APIQuerySet(self.queryset.offset(value)) |
| 53 | |
| 54 | async def all(self, session: AsyncSession) -> list[ModelT]: |
| 55 | """Fetch all rows for the current queryset.""" |
| 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.""" |
no outgoing calls
no test coverage detected