MCPcopy
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
20class 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
28class B(Base):

Callers

nothing calls this directly

Calls 2

mapped_columnFunction · 0.90
relationshipFunction · 0.90

Tested by

no test coverage detected