简体   繁体   English

从模型创建graphene-django接口

[英]Create graphene-django interface from models

I'm using graphene-django and i want to create four Interfaces, each representing models in Django, i'll start with only one model: 我正在使用graphene-django,我想创建四个接口,每个接口代表Django中的模型,我将仅从一个模型开始:

class TestInterface(graphene.Interface):
    items = graphene.Field(models.Test)

But i keep getting this error: 但我不断收到此错误:

AttributeError: type object 'Test' has no attribute 'name'

Any ideas? 有任何想法吗?

The argument to graphene.Field should be a class that inherits from DjangoObjectType and not a Django model, eg graphene.Field的参数应该是从DjangoObjectType继承的类,而不是 Django模型,例如

class TestType(DjangoObjectType):

    class Meta:
        model = Test

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM