├── .gitignore ├── Gopkg.lock ├── Gopkg.toml ├── Makefile ├── README.md ├── handler ├── main.go ├── schema │ ├── main.go │ └── user.go └── services │ └── dynamodb.go └── serverless.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafalWilinski/serverless-go-graphql/HEAD/.gitignore -------------------------------------------------------------------------------- /Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafalWilinski/serverless-go-graphql/HEAD/Gopkg.lock -------------------------------------------------------------------------------- /Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafalWilinski/serverless-go-graphql/HEAD/Gopkg.toml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafalWilinski/serverless-go-graphql/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafalWilinski/serverless-go-graphql/HEAD/README.md -------------------------------------------------------------------------------- /handler/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafalWilinski/serverless-go-graphql/HEAD/handler/main.go -------------------------------------------------------------------------------- /handler/schema/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafalWilinski/serverless-go-graphql/HEAD/handler/schema/main.go -------------------------------------------------------------------------------- /handler/schema/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafalWilinski/serverless-go-graphql/HEAD/handler/schema/user.go -------------------------------------------------------------------------------- /handler/services/dynamodb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafalWilinski/serverless-go-graphql/HEAD/handler/services/dynamodb.go -------------------------------------------------------------------------------- /serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafalWilinski/serverless-go-graphql/HEAD/serverless.yml --------------------------------------------------------------------------------