mirror of
https://github.com/graphql-python/graphene.git
synced 2024-11-11 20:27:03 +03:00
10 lines
244 B
Python
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
|
|
)
|