Integrate GraphiQL easily into your Django project
Project description
Django GraphiQL is a library for integrating GraphiQL inside your Django project, so you can test your GraphQL schemas easily.
This library versioning go in partity with GraphiQL.
Installing
For installing this library just run in your favorite shell:
pip install django-graphiql
Configuring
In settings.py add 'django_graphiql' into INSTALLED_APPS, so it will look like
INSTALLED_APPS = [
# ...
'django_graphiql',
# ...
]
And then, add into your urls.py:
urlpatterns = [
# Your other urls...
url(r'^graphiql', include('django_graphiql.urls')),
]
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
django-graphiql-0.4.4.tar.gz
(181.2 kB
view hashes)