(cls: type[Any])
| 113 | |
| 114 | |
| 115 | def is_table_model_class(cls: type[Any]) -> bool: |
| 116 | config = getattr(cls, "model_config", {}) |
| 117 | if config: |
| 118 | return config.get("table", False) or False |
| 119 | return False |
| 120 | |
| 121 | |
| 122 | def get_relationship_to( |
no outgoing calls
no test coverage detected
searching dependent graphs…