Would be nice if docs from sqlalchemy fields form schema description
class Project(Base):
__tablename__ = "projects"
address = Column(String, nullable=False, doc="This is an address")
For some reason chatgpt is sure that it will work, but I tested it with latest version and I can't see comments from doc.
What works for me is only setting it via core stawberry manually:
name: str = strawberry.field(description="The name of the user")
but this kills the whole idea of this library since I have to write boilerplate code for every model.
Would be perfect for autodocumentation support if I can set up docs in my entites and get them converted in the schema description.
Pay now to fund the work behind this issue.
Get updates on progress being made.
Maintainer is rewarded once the issue is completed.
You're funding impactful open source efforts
You want to contribute to this effort
You want to get funding like this too