石墨烯-Dango和模型属性

时间:2017-03-22 22:19:26

标签: python django graphene-python

假设一个类似于此的Django模型:

  class Profile(models.Model):
    user = models.OneToOneField(User, on_delete=models.PROTECT)
    name = models.CharField(max_length=255)
    other_alias = models.CharField(blank=True,null=True,max_length=255)

    @property
    def profile_name(self):
        if self.other_alias:
            return self.other_alias
        else:
            return self.name

我正在使用Graphene-Django这个项目,我成功创建了一个描述Profile类型的模式,并可以通过GraphQL查询正确访问它。但是,我无法看到任何可以使该属性可用的方式。

假设我应该从我的Django模型中删除所有属性风格的逻辑,而只是将GraphQL与模型中的原始信息一起使用,然后在我使用GraphQL数据的地方执行该逻辑(例如, 。在使用它的React应用程序中)?

1 个答案:

答案 0 :(得分:11)

在Profile的架构对象中,您可以添加带有源的字符串字段:

class Profile(DjangoObjectType):
    profile_name = graphene.String(source='profile_name')
    class Meta:
        model = ProfileModel
        interfaces = (relay.Node, )