graphene-django/graphene_django/tests/urls_inherited.py
2018-07-19 16:52:24 -07:00

14 lines
272 B
Python

from django.conf.urls import url
from ..views import GraphQLView
from .schema_view import schema
class CustomGraphQLView(GraphQLView):
schema = schema
graphiql = True
pretty = True
urlpatterns = [url(r"^graphql/inherited/$", CustomGraphQLView.as_view())]