├── .gitignore ├── client ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── components │ │ ├── AuthorForm.js │ │ ├── BookDetails.js │ │ ├── BookForm.js │ │ ├── BookList.js │ │ └── Forms.js │ ├── graphql-client │ │ ├── mutations.js │ │ └── queries.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── reportWebVitals.js │ └── setupTests.js └── yarn.lock ├── devnotes.txt ├── frontend.rar └── server ├── app.js ├── data ├── db.js └── static.js ├── models ├── Author.js └── Book.js ├── package-lock.json ├── package.json ├── resolver └── resolver.js └── schema └── schema.js /.gitignore: -------------------------------------------------------------------------------- 1 | server/node_modules 2 | -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpredrum136/GraphQL-Apollo-Tutorial/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpredrum136/GraphQL-Apollo-Tutorial/HEAD/client/README.md -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpredrum136/GraphQL-Apollo-Tutorial/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpredrum136/GraphQL-Apollo-Tutorial/HEAD/client/package.json -------------------------------------------------------------------------------- /client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpredrum136/GraphQL-Apollo-Tutorial/HEAD/client/public/favicon.ico -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpredrum136/GraphQL-Apollo-Tutorial/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpredrum136/GraphQL-Apollo-Tutorial/HEAD/client/public/logo192.png -------------------------------------------------------------------------------- /client/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpredrum136/GraphQL-Apollo-Tutorial/HEAD/client/public/logo512.png -------------------------------------------------------------------------------- /client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpredrum136/GraphQL-Apollo-Tutorial/HEAD/client/public/manifest.json -------------------------------------------------------------------------------- /client/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpredrum136/GraphQL-Apollo-Tutorial/HEAD/client/public/robots.txt -------------------------------------------------------------------------------- /client/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpredrum136/GraphQL-Apollo-Tutorial/HEAD/client/src/App.css -------------------------------------------------------------------------------- /client/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpredrum136/GraphQL-Apollo-Tutorial/HEAD/client/src/App.js -------------------------------------------------------------------------------- /client/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpredrum136/GraphQL-Apollo-Tutorial/HEAD/client/src/App.test.js -------------------------------------------------------------------------------- /client/src/components/AuthorForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpredrum136/GraphQL-Apollo-Tutorial/HEAD/client/src/components/AuthorForm.js -------------------------------------------------------------------------------- /client/src/components/BookDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpredrum136/GraphQL-Apollo-Tutorial/HEAD/client/src/components/BookDetails.js -------------------------------------------------------------------------------- /client/src/components/BookForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpredrum136/GraphQL-Apollo-Tutorial/HEAD/client/src/components/BookForm.js -------------------------------------------------------------------------------- /client/src/components/BookList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpredrum136/GraphQL-Apollo-Tutorial/HEAD/client/src/components/BookList.js -------------------------------------------------------------------------------- /client/src/components/Forms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpredrum136/GraphQL-Apollo-Tutorial/HEAD/client/src/components/Forms.js -------------------------------------------------------------------------------- /client/src/graphql-client/mutations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpredrum136/GraphQL-Apollo-Tutorial/HEAD/client/src/graphql-client/mutations.js -------------------------------------------------------------------------------- /client/src/graphql-client/queries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpredrum136/GraphQL-Apollo-Tutorial/HEAD/client/src/graphql-client/queries.js -------------------------------------------------------------------------------- /client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpredrum136/GraphQL-Apollo-Tutorial/HEAD/client/src/index.css -------------------------------------------------------------------------------- /client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpredrum136/GraphQL-Apollo-Tutorial/HEAD/client/src/index.js -------------------------------------------------------------------------------- /client/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpredrum136/GraphQL-Apollo-Tutorial/HEAD/client/src/logo.svg -------------------------------------------------------------------------------- /client/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpredrum136/GraphQL-Apollo-Tutorial/HEAD/client/src/reportWebVitals.js -------------------------------------------------------------------------------- /client/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpredrum136/GraphQL-Apollo-Tutorial/HEAD/client/src/setupTests.js -------------------------------------------------------------------------------- /client/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpredrum136/GraphQL-Apollo-Tutorial/HEAD/client/yarn.lock -------------------------------------------------------------------------------- /devnotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpredrum136/GraphQL-Apollo-Tutorial/HEAD/devnotes.txt -------------------------------------------------------------------------------- /frontend.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpredrum136/GraphQL-Apollo-Tutorial/HEAD/frontend.rar -------------------------------------------------------------------------------- /server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpredrum136/GraphQL-Apollo-Tutorial/HEAD/server/app.js -------------------------------------------------------------------------------- /server/data/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpredrum136/GraphQL-Apollo-Tutorial/HEAD/server/data/db.js -------------------------------------------------------------------------------- /server/data/static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpredrum136/GraphQL-Apollo-Tutorial/HEAD/server/data/static.js -------------------------------------------------------------------------------- /server/models/Author.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpredrum136/GraphQL-Apollo-Tutorial/HEAD/server/models/Author.js -------------------------------------------------------------------------------- /server/models/Book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpredrum136/GraphQL-Apollo-Tutorial/HEAD/server/models/Book.js -------------------------------------------------------------------------------- /server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpredrum136/GraphQL-Apollo-Tutorial/HEAD/server/package-lock.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpredrum136/GraphQL-Apollo-Tutorial/HEAD/server/package.json -------------------------------------------------------------------------------- /server/resolver/resolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpredrum136/GraphQL-Apollo-Tutorial/HEAD/server/resolver/resolver.js -------------------------------------------------------------------------------- /server/schema/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpredrum136/GraphQL-Apollo-Tutorial/HEAD/server/schema/schema.js --------------------------------------------------------------------------------