Merge pull request #138 from ilhan/fix_docs

Fix wrong path to graphene.contrib.django
This commit is contained in:
Syrus Akbary 2016-04-01 13:45:11 -07:00
commit 13ca2fe77d

View File

@ -14,10 +14,10 @@ Graphene comes with a management command for Django to dump your schema data to
## Usage
Include `graphene.django.contrib` to `INSTALLED_APPS` in you project settings:
Include `graphene.contrib.django` to `INSTALLED_APPS` in you project settings:
```python
INSTALLED_APPS += ('graphene.django.contrib')
INSTALLED_APPS += ('graphene.contrib.django')
```
Assuming your Graphene schema is at `tutorial.quickstart.schema`, run the command: