【发布时间】:2021-11-07 11:49:27
【问题描述】:
我在这里建立了自己的内容管理系统:https://github.com/bastianhilton/Alternate-CMS,我最近使用 Django-Graphene 添加了 graphql 支持,并更新了我的模型 schema.py。但是,当我尝试运行查询时,我收到以下消息。任何方向将不胜感激。
{
"errors": [
{
"message": "relation \"shop_addresscountry\" does not exist\nLINE 1: ... \"shop_addresscountry\".\"is_shipping_country\" FROM \"shop_addr...\n ^\n"
}
],
"data": {
"allAddresscountry": null
}
}
【问题讨论】:
标签: django graphql graphene-django