graphene-django/graphene_django/tests/urls.py

9 lines
170 B
Python
Raw Normal View History

from django.conf.urls import url
from ..views import GraphQLView
from .schema import schema
urlpatterns = [
url(r'^graphql', GraphQLView.as_view(schema=schema)),
]