graphene-django/graphene_django/tests/urls_pretty.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

7 lines
176 B
Python

from django.urls import path
from ..views import GraphQLView
from .schema_view import schema
urlpatterns = [path("graphql", GraphQLView.as_view(schema=schema, pretty=True))]