Runs a local http server for graphiql and your graphql handler
See /example
directory for how easily it's done!
Steps
- Create a lambda function named graphql that implements a graphql server
- Add
serverless-plugin-graphiql
to serverless plugins array - Run
sls graphiql
command from root of serverless project - Visit
localhost:8000/graphql
in your browser to use graphiql
- This plugin creates two http endpoints:
GET /graphql
POST /graphql
- Once graphiql is running, you can also make requests via cli:
curl -X POST \
-H "Content-Type: application/json" \
-d '{"query": "{ hello }"}' \
localhost:8000/graphql
--function -f function name in serverless.yml for graphql handler, Default: graphql
--port -p port for local http server to listen on, Default: 8000
- Node.js > v6.0