mirror of
https://github.com/graphql-python/graphene-django.git
synced 2024-11-26 03:24:07 +03:00
11 lines
245 B
Python
11 lines
245 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
|
|
)
|