graphene-django/graphene_django/tests/urls.py
Tim Schilling 5d5d7f1815
Django v4, python 3.10 support for graphene-django v3 (#1281)
Co-authored-by: Yair Silbermintz <MisterGlass@users.noreply.github.com>
2022-01-07 20:26:07 +00:00

9 lines
198 B
Python

from django.urls import path
from ..views import GraphQLView
urlpatterns = [
path("graphql/batch", GraphQLView.as_view(batch=True)),
path("graphql", GraphQLView.as_view(graphiql=True)),
]