mirror of
https://github.com/graphql-python/graphene-django.git
synced 2025-02-07 07:00:35 +03:00
10 lines
201 B
Python
10 lines
201 B
Python
from django.conf.urls import url
|
|
|
|
from graphql_django_view import GraphQLView
|
|
|
|
from .schema_view import schema
|
|
|
|
urlpatterns = [
|
|
url(r'^graphql', GraphQLView.as_view(schema=schema, pretty=True)),
|
|
]
|