MCPcopy
hub / github.com/tortoise/tortoise-orm / all

Method all

tortoise/models.py:1550–1554  ·  view source on GitHub ↗

Returns the complete QuerySet.

(cls, using_db: BaseDBAsyncClient | None = None)

Source from the content-addressed store, hash-verified

1548
1549 @classmethod
1550 def all(cls, using_db: BaseDBAsyncClient | None = None) -> QuerySet[Self]:
1551 """
1552 Returns the complete QuerySet.
1553 """
1554 return cls._db_queryset(using_db)
1555
1556 @classmethod
1557 def get(

Calls 1

_db_querysetMethod · 0.80