├── .babelrc ├── .gitignore ├── README.md ├── package.json ├── readme └── runtheapp.gif └── src ├── index.js └── models └── user ├── userMutations.js ├── userQueries.js ├── userSchema.js └── userType.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015"] 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applification/graphql-express-mongodb/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applification/graphql-express-mongodb/HEAD/package.json -------------------------------------------------------------------------------- /readme/runtheapp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applification/graphql-express-mongodb/HEAD/readme/runtheapp.gif -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applification/graphql-express-mongodb/HEAD/src/index.js -------------------------------------------------------------------------------- /src/models/user/userMutations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applification/graphql-express-mongodb/HEAD/src/models/user/userMutations.js -------------------------------------------------------------------------------- /src/models/user/userQueries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applification/graphql-express-mongodb/HEAD/src/models/user/userQueries.js -------------------------------------------------------------------------------- /src/models/user/userSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applification/graphql-express-mongodb/HEAD/src/models/user/userSchema.js -------------------------------------------------------------------------------- /src/models/user/userType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applification/graphql-express-mongodb/HEAD/src/models/user/userType.js --------------------------------------------------------------------------------