Relationship field on column_searchable_list #648
Replies: 1 comment
-
This is not supported yet. Tracked in #643 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
My model looks like
from fastapi_users.db import (
SQLAlchemyBaseUserTableUUID
)
class User(SQLAlchemyBaseUserTableUUID, Base):
tablename = "user"
username = sa.Column(sa.String(20), unique=True, index=True)
content = relationship("Content", back_populates="creator")
class Content(LeafBase):
tablename = "leaf_content"
by this, search doesnot work by putting content title of content . what is the usecase of accepting above scenario if it didnot search?
I think this would be a bit clear if it accept like, sothat admin panel know which field looking for
Please make me clear about ths
Beta Was this translation helpful? Give feedback.
All reactions