Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 901 Bytes

README.md

File metadata and controls

40 lines (27 loc) · 901 Bytes

Serverless + GraphQL Helix Template

A simple template for Serverless GraphQL projects.

Includes

Usage

Installation

yarn install

Running locally

yarn start

Open http://localhost:3000/graphql in a browser to use the GraphiQL interface. Run GraphQL queries against the same endpoint:

curl --location --request POST 'http://localhost:3000/graphql' \
--header 'Content-Type: application/json' \
--data-raw '{"query":"query {\n  hello\n}","variables":{}}'

Deployment

Configure your AWS credentials and run:

yarn deploy