7 lines
193 B
Python
7 lines
193 B
Python
|
|
from django.urls import path
|
||
|
|
from graphene_django.views import GraphQLView
|
||
|
|
from apps.api.schema import schema
|
||
|
|
|
||
|
|
urlpatterns = [
|
||
|
|
path('', GraphQLView.as_view(graphiql=True, schema=schema)),
|
||
|
|
]
|