graphene/graphene-django/graphene_django/views.py
2016-06-19 14:30:33 -07:00

10 lines
244 B
Python

from graphql_django_view import GraphQLView as BaseGraphQLView
class GraphQLView(BaseGraphQLView):
def __init__(self, schema, **kwargs):
super(GraphQLView, self).__init__(
schema=schema,
**kwargs
)