├── .env.example ├── .gitignore ├── README.md ├── package.json ├── src ├── controllers │ ├── comments_controller.js │ └── posts_controller.js ├── dummy_data │ ├── dummy_comments.js │ └── dummy_posts.js ├── index.js ├── pubsub.js ├── schema │ └── schema.js ├── server.js └── types │ ├── comment │ ├── comment_type.js │ └── comment_type_extras.js │ └── post │ ├── post_type.js │ └── post_type_extras.js ├── webpack.config.dist.js ├── webpack.config.js └── yarn.lock /.env.example: -------------------------------------------------------------------------------- 1 | WS_URL= -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhaagens/express-graphql-boilerplate-hmr/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhaagens/express-graphql-boilerplate-hmr/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhaagens/express-graphql-boilerplate-hmr/HEAD/package.json -------------------------------------------------------------------------------- /src/controllers/comments_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhaagens/express-graphql-boilerplate-hmr/HEAD/src/controllers/comments_controller.js -------------------------------------------------------------------------------- /src/controllers/posts_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhaagens/express-graphql-boilerplate-hmr/HEAD/src/controllers/posts_controller.js -------------------------------------------------------------------------------- /src/dummy_data/dummy_comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhaagens/express-graphql-boilerplate-hmr/HEAD/src/dummy_data/dummy_comments.js -------------------------------------------------------------------------------- /src/dummy_data/dummy_posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhaagens/express-graphql-boilerplate-hmr/HEAD/src/dummy_data/dummy_posts.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhaagens/express-graphql-boilerplate-hmr/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pubsub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhaagens/express-graphql-boilerplate-hmr/HEAD/src/pubsub.js -------------------------------------------------------------------------------- /src/schema/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhaagens/express-graphql-boilerplate-hmr/HEAD/src/schema/schema.js -------------------------------------------------------------------------------- /src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhaagens/express-graphql-boilerplate-hmr/HEAD/src/server.js -------------------------------------------------------------------------------- /src/types/comment/comment_type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhaagens/express-graphql-boilerplate-hmr/HEAD/src/types/comment/comment_type.js -------------------------------------------------------------------------------- /src/types/comment/comment_type_extras.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhaagens/express-graphql-boilerplate-hmr/HEAD/src/types/comment/comment_type_extras.js -------------------------------------------------------------------------------- /src/types/post/post_type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhaagens/express-graphql-boilerplate-hmr/HEAD/src/types/post/post_type.js -------------------------------------------------------------------------------- /src/types/post/post_type_extras.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhaagens/express-graphql-boilerplate-hmr/HEAD/src/types/post/post_type_extras.js -------------------------------------------------------------------------------- /webpack.config.dist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhaagens/express-graphql-boilerplate-hmr/HEAD/webpack.config.dist.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhaagens/express-graphql-boilerplate-hmr/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhaagens/express-graphql-boilerplate-hmr/HEAD/yarn.lock --------------------------------------------------------------------------------