1 、我使用了 sqlalchemy 连接了我的 mysql 数据库
2 、定义了people
class People(Base):
__tablename__ = 'people'
id = Column(BigInteger, primary_key=True)
name = Column(String(128))
birthplace = Column(String(128))
3 、定义
class Person(graphene_sqlalchemy.SQLAlchemyObjectType):
class Meta:
model = PersonModel
4 、我想要可以搜索 people 里面的 name ,请问怎么写??