mirror of
https://github.com/graphql-python/graphene-django.git
synced 2024-11-14 21:57:14 +03:00
11 lines
224 B
Python
11 lines
224 B
Python
from django.urls import path
|
|
from django.contrib import admin
|
|
|
|
from graphene_django.views import GraphQLView
|
|
|
|
|
|
urlpatterns = [
|
|
path('admin/', admin.site.urls),
|
|
path('graphql/', GraphQLView.as_view(graphiql=True)),
|
|
]
|