Skip to content

Instantly share code, notes, and snippets.

@bengrunfeld
Created June 2, 2021 14:25
Show Gist options
  • Save bengrunfeld/a5a77236290bc4a8e3e663d52deb29be to your computer and use it in GitHub Desktop.
Save bengrunfeld/a5a77236290bc4a8e3e663d52deb29be to your computer and use it in GitHub Desktop.
GraphQL Scalable Resolvers File
import { User } from './User'
const resolvers = {
Query: {
...User.resolvers.queries,
},
Mutation: {
...User.resolvers.mutations,
}
};
export default resolvers;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment