3

我有两个类:我的模型中的 Products 和 SalableProducts (SalableProducts 继承自 Products,因此它具有数据库的每个字段)。这是我的架构在下面

我尝试包括“exclude_fields”属性,但没有奏效

Product_schema.py:

class Product(SQLAlchemyObjectType):
 class Meta:
  model = ProductModel
  interfaces = (relay.Node, )

class ProductConnections(relay.Connection):
 class Meta:
  node = Product

Saleable_product_schema.py:

class SalableProduct(SQLAlchemyObjectType):
 class Meta:
  model = SalableProductModel
  interfaces = (relay.Node, )

class SalableProductConnections(relay.Connection):
 class Meta:
  node = SalableProduct

架构.py:

class Query(graphene.ObjectType):
 node = relay.Node.Field()
 all_products = SQLAlchemyConnectionField(ProductConnections)
 all_salable_products = 
  SQLAlchemyConnectionField(SalableProductConnections)

结果是这个错误:

AssertionError:在架构中找到具有相同名称的不同类型:product_status、product_status。

(product_status 是两个类通过继承共享的属性)

4

1 回答 1

1

我遇到了同样的问题。在我的特殊情况下,问题是使用 backref 时 SQLAlchemy 的内部工作方式发生冲突。我会检查模型,看看是否是这种情况。

以下文章有一些相关信息。在我的特殊情况下,我尝试了建议并重命名了其中一个连接:

techniques = SQLAlchemyConnectionField(TechniqueConnection)
belts = SQLAlchemyConnectionField(BeltConnection)
belt_techniques = SQLAlchemyConnectionField(BeltTechniqueConnections)

我在 BeltTechniqueConnection 上附加了一个“s”。相关模型与技术和腰带有多对多的关系。

于 2019-06-30T02:58:14.487 回答