-
Lets say Ive multiple type Mutation {
MutationA(input: MutationAInput!): SomeOutput!
MutationB(input: MutationBInput!): SomeOutput!
MutationC(input: MutationCInput!): SomeOutput!
} As of now, when i write revolvers for these mutation, gqlgen creates it in the same file I was wondering if I can divide the resolvers in different files based on the Query/Mutation name. Or if there is another way around it to achieve the same. The reason I want it to do this is |
Beta Was this translation helpful? Give feedback.
Answered by
TeddiO
Apr 26, 2025
Replies: 1 comment 1 reply
-
I answered a similar question here - #3563 , that should split it out into different resolver files for you 😁 |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
punitsu
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I answered a similar question here - #3563 , that should split it out into different resolver files for you 😁