(self, model: type[MODEL])
| 94 | ) |
| 95 | |
| 96 | def __init__(self, model: type[MODEL]) -> None: |
| 97 | self._joined_tables: list[Table] = [] |
| 98 | self.model: type[MODEL] = model |
| 99 | self.query: QueryBuilder = QUERY |
| 100 | self._db: BaseDBAsyncClient = None # type: ignore |
| 101 | self._capabilities: Capabilities | None = None |
| 102 | self._annotations: dict[str, Expression | Term] = {} |
| 103 | self._custom_filters: dict[str, FilterInfoDict] = {} |
| 104 | self._q_objects: list[Q] = [] |
| 105 | |
| 106 | @property |
| 107 | def capabilities(self) -> Capabilities: |
nothing calls this directly
no outgoing calls
no test coverage detected