Skip to content

Instantly share code, notes, and snippets.

@lewisdaly
Created May 25, 2018 05:41
Show Gist options
  • Save lewisdaly/8708853d7cc193a9900fa996c6196649 to your computer and use it in GitHub Desktop.
Save lewisdaly/8708853d7cc193a9900fa996c6196649 to your computer and use it in GitHub Desktop.
Apollo Server + serverless example
service: apollo-lambda
provider:
name: aws
runtime: nodejs6.10
region: ap-southeast-2
stage: development
functions:
graphql:
handler: handler.graphql
events:
- http:
path: graphql
method: post
cors: true
graphiql:
handler: handler.graphiql
events:
- http:
path: graphiql
method: get
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment