├── .circleci └── config.yml ├── .gitignore ├── LICENSE ├── README.md ├── __tests__ ├── __snapshots__ │ └── service-gateway.js.snap └── service-gateway.js ├── docker-compose.yml ├── package.json ├── renovate.json ├── service-gateway ├── .dockerignore ├── .gitignore ├── .prettierrc ├── Dockerfile ├── package-lock.json ├── package.json └── src │ └── index.js ├── service-post ├── .dockerignore ├── .gitignore ├── .prettierrc ├── Dockerfile ├── package-lock.json ├── package.json └── src │ ├── index.js │ ├── resolver │ ├── index.js │ └── post.js │ └── schema │ └── post.js └── service-user ├── .dockerignore ├── .gitignore ├── .prettierrc ├── Dockerfile ├── package-lock.json ├── package.json └── src ├── index.js ├── resolver ├── index.js └── user.js └── schema └── user.js /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriswep/graphql-microservices/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriswep/graphql-microservices/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriswep/graphql-microservices/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriswep/graphql-microservices/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/__snapshots__/service-gateway.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriswep/graphql-microservices/HEAD/__tests__/__snapshots__/service-gateway.js.snap -------------------------------------------------------------------------------- /__tests__/service-gateway.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriswep/graphql-microservices/HEAD/__tests__/service-gateway.js -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriswep/graphql-microservices/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriswep/graphql-microservices/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriswep/graphql-microservices/HEAD/renovate.json -------------------------------------------------------------------------------- /service-gateway/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log -------------------------------------------------------------------------------- /service-gateway/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriswep/graphql-microservices/HEAD/service-gateway/.gitignore -------------------------------------------------------------------------------- /service-gateway/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriswep/graphql-microservices/HEAD/service-gateway/.prettierrc -------------------------------------------------------------------------------- /service-gateway/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriswep/graphql-microservices/HEAD/service-gateway/Dockerfile -------------------------------------------------------------------------------- /service-gateway/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriswep/graphql-microservices/HEAD/service-gateway/package-lock.json -------------------------------------------------------------------------------- /service-gateway/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriswep/graphql-microservices/HEAD/service-gateway/package.json -------------------------------------------------------------------------------- /service-gateway/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriswep/graphql-microservices/HEAD/service-gateway/src/index.js -------------------------------------------------------------------------------- /service-post/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log -------------------------------------------------------------------------------- /service-post/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriswep/graphql-microservices/HEAD/service-post/.gitignore -------------------------------------------------------------------------------- /service-post/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriswep/graphql-microservices/HEAD/service-post/.prettierrc -------------------------------------------------------------------------------- /service-post/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriswep/graphql-microservices/HEAD/service-post/Dockerfile -------------------------------------------------------------------------------- /service-post/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriswep/graphql-microservices/HEAD/service-post/package-lock.json -------------------------------------------------------------------------------- /service-post/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriswep/graphql-microservices/HEAD/service-post/package.json -------------------------------------------------------------------------------- /service-post/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriswep/graphql-microservices/HEAD/service-post/src/index.js -------------------------------------------------------------------------------- /service-post/src/resolver/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriswep/graphql-microservices/HEAD/service-post/src/resolver/index.js -------------------------------------------------------------------------------- /service-post/src/resolver/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriswep/graphql-microservices/HEAD/service-post/src/resolver/post.js -------------------------------------------------------------------------------- /service-post/src/schema/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriswep/graphql-microservices/HEAD/service-post/src/schema/post.js -------------------------------------------------------------------------------- /service-user/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log -------------------------------------------------------------------------------- /service-user/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriswep/graphql-microservices/HEAD/service-user/.gitignore -------------------------------------------------------------------------------- /service-user/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriswep/graphql-microservices/HEAD/service-user/.prettierrc -------------------------------------------------------------------------------- /service-user/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriswep/graphql-microservices/HEAD/service-user/Dockerfile -------------------------------------------------------------------------------- /service-user/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriswep/graphql-microservices/HEAD/service-user/package-lock.json -------------------------------------------------------------------------------- /service-user/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriswep/graphql-microservices/HEAD/service-user/package.json -------------------------------------------------------------------------------- /service-user/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriswep/graphql-microservices/HEAD/service-user/src/index.js -------------------------------------------------------------------------------- /service-user/src/resolver/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriswep/graphql-microservices/HEAD/service-user/src/resolver/index.js -------------------------------------------------------------------------------- /service-user/src/resolver/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriswep/graphql-microservices/HEAD/service-user/src/resolver/user.js -------------------------------------------------------------------------------- /service-user/src/schema/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriswep/graphql-microservices/HEAD/service-user/src/schema/user.js --------------------------------------------------------------------------------