Skip to content

Instantly share code, notes, and snippets.

@sergioramos
Last active June 2, 2022 13:21
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 sergioramos/249a0a34735f3320187758b77a4af309 to your computer and use it in GitHub Desktop.
Save sergioramos/249a0a34735f3320187758b77a4af309 to your computer and use it in GitHub Desktop.
const { graphqlLambda } = require('apollo-server-lambda/dist/lambdaApollo');
const gql = require('graphql-tag');
exports.handler = graphqlLambda({
// our schema
typeDefs: gql``,
// our resolvers
resolver: {},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment