You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 7, 2026. It is now read-only.
While mutations are already possible in future API via MutationType(ObjectType) sublclassing, we could also have extra MutationType base class that would represent single field on mutation:
We could use __graphql_name__ to rename LoginMutation to something else in schema, and have extra attr named __mutation_name__ to rename login on Mutation type to something else.
While mutations are already possible in future API via
MutationType(ObjectType)sublclassing, we could also have extraMutationTypebase class that would represent single field onmutation:Result:
We could use
__graphql_name__to renameLoginMutationto something else in schema, and have extra attr named__mutation_name__to renameloginonMutationtype to something else.