from graphene import Mutation class BaseMutation(Mutation): # type: ignore [misc] def __init__(self, *args, **kwargs) -> None: super().__init__(*args, **kwargs) @staticmethod def mutate(**kwargs) -> None: pass