How to combine mutations in one?
@strawberry.type
class Mutation1:
@strawberry.mutation
def login(self, email: str, password: str) -> LoginResult:
@strawberry.type
class Mutation2:
@strawberry.mutation
def create_post(self, title: str, text: str) -> CreatePostResult:
schema = strawberry.Schema(mutations = ....)