schon/core/graphene/__init__.py

10 lines
203 B
Python

from graphene import Mutation
class BaseMutation(Mutation):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
@staticmethod
def mutate(**kwargs):
pass