PhysioTag: An Open-Source Platform for Collaborative Annotation of Physiological Waveforms 1.0.0

File: <base>/waveform-django/export/urls.py (219 bytes)
from django.urls import path
from graphene_django.views import GraphQLView
from schema import schema


urlpatterns = [
    path('graphql', GraphQLView.as_view(graphiql=False, schema=schema),
         name='graphql'),
]