├── .browserslistrc ├── .gitignore ├── README.md ├── apollo-server ├── context.js ├── data-sources.js ├── directives.js ├── resolvers.js ├── schema.graphql ├── server.js ├── type-defs.js └── utils │ └── db.js ├── apollo.config.js ├── babel.config.js ├── live └── db.json ├── package.json ├── vue.config.js └── yarn.lock /.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/graphql-server/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/graphql-server/HEAD/README.md -------------------------------------------------------------------------------- /apollo-server/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/graphql-server/HEAD/apollo-server/context.js -------------------------------------------------------------------------------- /apollo-server/data-sources.js: -------------------------------------------------------------------------------- 1 | export default function() { 2 | return {}; 3 | } 4 | -------------------------------------------------------------------------------- /apollo-server/directives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/graphql-server/HEAD/apollo-server/directives.js -------------------------------------------------------------------------------- /apollo-server/resolvers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/graphql-server/HEAD/apollo-server/resolvers.js -------------------------------------------------------------------------------- /apollo-server/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/graphql-server/HEAD/apollo-server/schema.graphql -------------------------------------------------------------------------------- /apollo-server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/graphql-server/HEAD/apollo-server/server.js -------------------------------------------------------------------------------- /apollo-server/type-defs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/graphql-server/HEAD/apollo-server/type-defs.js -------------------------------------------------------------------------------- /apollo-server/utils/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/graphql-server/HEAD/apollo-server/utils/db.js -------------------------------------------------------------------------------- /apollo.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/graphql-server/HEAD/apollo.config.js -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/graphql-server/HEAD/babel.config.js -------------------------------------------------------------------------------- /live/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/graphql-server/HEAD/live/db.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/graphql-server/HEAD/package.json -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/graphql-server/HEAD/vue.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/graphql-server/HEAD/yarn.lock --------------------------------------------------------------------------------