├── .gitignore ├── app.arc ├── package.json ├── preferences.arc.example ├── readme.md ├── scripts └── seed-db.js └── src └── http ├── get-graphql ├── .arc-config └── index.js ├── get-index └── index.js └── post-graphql ├── .arc-config ├── db-schema.js ├── index.js ├── query.js ├── resolvers.js └── schema.graphql /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbethel/graphql-dynamodb-example/HEAD/.gitignore -------------------------------------------------------------------------------- /app.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbethel/graphql-dynamodb-example/HEAD/app.arc -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbethel/graphql-dynamodb-example/HEAD/package.json -------------------------------------------------------------------------------- /preferences.arc.example: -------------------------------------------------------------------------------- 1 | @sandbox-startup 2 | node ./scripts/seed-db.js 3 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbethel/graphql-dynamodb-example/HEAD/readme.md -------------------------------------------------------------------------------- /scripts/seed-db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbethel/graphql-dynamodb-example/HEAD/scripts/seed-db.js -------------------------------------------------------------------------------- /src/http/get-graphql/.arc-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbethel/graphql-dynamodb-example/HEAD/src/http/get-graphql/.arc-config -------------------------------------------------------------------------------- /src/http/get-graphql/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbethel/graphql-dynamodb-example/HEAD/src/http/get-graphql/index.js -------------------------------------------------------------------------------- /src/http/get-index/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbethel/graphql-dynamodb-example/HEAD/src/http/get-index/index.js -------------------------------------------------------------------------------- /src/http/post-graphql/.arc-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbethel/graphql-dynamodb-example/HEAD/src/http/post-graphql/.arc-config -------------------------------------------------------------------------------- /src/http/post-graphql/db-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbethel/graphql-dynamodb-example/HEAD/src/http/post-graphql/db-schema.js -------------------------------------------------------------------------------- /src/http/post-graphql/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbethel/graphql-dynamodb-example/HEAD/src/http/post-graphql/index.js -------------------------------------------------------------------------------- /src/http/post-graphql/query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbethel/graphql-dynamodb-example/HEAD/src/http/post-graphql/query.js -------------------------------------------------------------------------------- /src/http/post-graphql/resolvers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbethel/graphql-dynamodb-example/HEAD/src/http/post-graphql/resolvers.js -------------------------------------------------------------------------------- /src/http/post-graphql/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbethel/graphql-dynamodb-example/HEAD/src/http/post-graphql/schema.graphql --------------------------------------------------------------------------------