Adding graphene.contrib.django to INSTALLED_APPS in django quickstart

This commit is contained in:
Adam Charnock 2016-01-02 19:11:38 +00:00
parent 442998cbb3
commit ffc6707fbf

View File

@ -142,6 +142,9 @@ Add `django_graphiql` to `INSTALLED_APPS` in `cookbook/settings.py`:
INSTALLED_APPS = [
...
'django_graphiql',
# This will also make the `graphql_schema` management command available
'graphene.contrib.django',
]
```