Skip to content

Instantly share code, notes, and snippets.

@akoenig
Last active March 4, 2018 07:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save akoenig/b43e0da3d49b037826529b155f4d3b48 to your computer and use it in GitHub Desktop.
Save akoenig/b43e0da3d49b037826529b155f4d3b48 to your computer and use it in GitHub Desktop.
// path: resolvers/mutation/index.ts
import { helmet } from "../helmet";
import { login } from "./login";
const Mutation = {
login: helmet(login)
// ...
};
export { Mutation };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment