Return the whole QuerySet. Essentially a no-op except as the only operation.
(self)
| 809 | ) |
| 810 | |
| 811 | def all(self) -> QuerySet[MODEL]: |
| 812 | """ |
| 813 | Return the whole QuerySet. |
| 814 | Essentially a no-op except as the only operation. |
| 815 | """ |
| 816 | return self._clone() |
| 817 | |
| 818 | def raw(self, sql: str) -> RawSQLQuery: |
| 819 | """ |