MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / Slide

Class Slide

test/typing/plain_files/ext/orderinglist/orderinglist_one.py:30–38  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

28
29
30class Slide(Base):
31 __tablename__ = "slide"
32
33 id: Mapped[int] = mapped_column(primary_key=True)
34 name: Mapped[str]
35
36 bullets: Mapped[list[Bullet]] = relationship(
37 "Bullet", order_by="Bullet.position", collection_class=pos_from_text
38 )
39
40
41class Bullet(Base):

Callers 1

Calls 2

mapped_columnFunction · 0.90
relationshipFunction · 0.90

Tested by

no test coverage detected