You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
from graphql_django_view import GraphQLView as BaseGraphQLView |
|
|
|
|
|
class GraphQLView(BaseGraphQLView): |
|
|
|
def __init__(self, schema, **kwargs): |
|
super(GraphQLView, self).__init__( |
|
schema=schema, |
|
**kwargs |
|
)
|
|
|