TemplateDoesNotExist graphene/graphiql.html

TemplateDoesNotExist graphene/graphiql.html

我正在尝试设置 Graphene,但在浏览器中打开 http://localhost:8000/graphql/ 时出现以下异常:

TemplateDoesNotExist at /graphql/
graphene/graphiql.html
Request Method: GET
Request URL:    http://localhost:8000/graphql/
Django Version: 3.2.10

添加了整个设置、添加到网址、配置架构、查询和变更。但还是不行。甚至不记得曾经需要为石墨烯配置模板。

似乎忘记在 settings.py 中添加以下内容,因此它没有完全配置,至少对于 DEBUG 模式:

INSTALLED_APPS = [
    # ...
    "graphene_django",
    # ...
]