-
Currently when auto-generating names, it generates AST as "CreateOneT", "CreateManyT", "UpdateOneT", "UpdateManyT", where the AST output groups by action type for mutation. Id like to invert this. So that liked domains are grouped. TCreateOne, TCreateMany, TUpdateOne, TUpdateMany, ..etc. Is there functionality for this already? Or do I have to create custom resolvers to handle creating these names? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You can customise the name of individual resolvers like this: https://tripss.github.io/nestjs-query/docs/graphql/resolvers/#override-endpoint-name |
Beta Was this translation helpful? Give feedback.
You can customise the name of individual resolvers like this: https://tripss.github.io/nestjs-query/docs/graphql/resolvers/#override-endpoint-name
But AFAIK, there's no way to change this globally.