10 lines
203 B
Python
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
|