├── .gitignore ├── README.md ├── index.js ├── package.json └── schema ├── books.json ├── resolvers.js └── typedefs.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemanth/graphql-demo/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemanth/graphql-demo/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemanth/graphql-demo/HEAD/package.json -------------------------------------------------------------------------------- /schema/books.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemanth/graphql-demo/HEAD/schema/books.json -------------------------------------------------------------------------------- /schema/resolvers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemanth/graphql-demo/HEAD/schema/resolvers.js -------------------------------------------------------------------------------- /schema/typedefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemanth/graphql-demo/HEAD/schema/typedefs.js --------------------------------------------------------------------------------