├── .gitignore ├── LICENSE ├── README.md ├── _redirects ├── functions ├── bundle │ ├── index.js │ └── server.js └── graphql.js ├── index.html ├── netlify.toml ├── nodemon.json ├── package.json └── src ├── index.js └── server.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemmlerjs/serverless-graphql-netlify-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemmlerjs/serverless-graphql-netlify-starter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemmlerjs/serverless-graphql-netlify-starter/HEAD/README.md -------------------------------------------------------------------------------- /_redirects: -------------------------------------------------------------------------------- 1 | / /.netlify/functions/graphql 200! -------------------------------------------------------------------------------- /functions/bundle/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemmlerjs/serverless-graphql-netlify-starter/HEAD/functions/bundle/index.js -------------------------------------------------------------------------------- /functions/bundle/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemmlerjs/serverless-graphql-netlify-starter/HEAD/functions/bundle/server.js -------------------------------------------------------------------------------- /functions/graphql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemmlerjs/serverless-graphql-netlify-starter/HEAD/functions/graphql.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemmlerjs/serverless-graphql-netlify-starter/HEAD/netlify.toml -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemmlerjs/serverless-graphql-netlify-starter/HEAD/nodemon.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemmlerjs/serverless-graphql-netlify-starter/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemmlerjs/serverless-graphql-netlify-starter/HEAD/src/index.js -------------------------------------------------------------------------------- /src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemmlerjs/serverless-graphql-netlify-starter/HEAD/src/server.js --------------------------------------------------------------------------------