Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/sqlalchemy/sqlalchemy
/ A
Class
A
test/typing/plain_files/orm/orm_querying.py:20–25 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
18
19
20
class
A(Base):
21
__tablename__ =
"a"
22
23
id: Mapped[int] = mapped_column(primary_key=True)
24
data: Mapped[str]
25
bs: Mapped[list[B]] = relationship(
"B"
)
26
27
28
class
B(Base):
Callers
nothing calls this directly
Calls
2
mapped_column
Function · 0.90
relationship
Function · 0.90
Tested by
no test coverage detected