mirror of
https://github.com/graphql-python/graphene-django.git
synced 2024-11-25 19:14:11 +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
|
|
)
|