mirror of
https://github.com/graphql-python/graphene-django.git
synced 2025-02-22 22:53:05 +03:00
* Replace calls to deprecated methods * Fix test config & Replace additional methods removed in django 4.0 * Update tox for official Django 4 release * 2.16.0 * Revert version update * Remove duplicate entry Co-authored-by: Jeremy Stretch <jstretch@ns1.com> * Limit max Django version Co-authored-by: Jeremy Stretch <jstretch@ns1.com> * Remove Python 3.5 (deprecated) from tox Co-authored-by: Jeremy Stretch <jstretch@ns1.com> Co-authored-by: Ülgen Sarıkavak <ulgens@users.noreply.github.com> Co-authored-by: Jeremy Stretch <jstretch@ns1.com>
9 lines
211 B
Python
9 lines
211 B
Python
from django.urls import re_path
|
|
|
|
from ..views import GraphQLView
|
|
|
|
urlpatterns = [
|
|
re_path(r"^graphql/batch", GraphQLView.as_view(batch=True)),
|
|
re_path(r"^graphql", GraphQLView.as_view(graphiql=True)),
|
|
]
|