├── .gitignore ├── LICENSE ├── README.md ├── chapter-01 ├── 1_1 │ ├── .browserslistrc │ ├── .editorconfig │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ └── index.html │ └── src │ │ ├── App.vue │ │ ├── assets │ │ └── logo.png │ │ ├── components │ │ └── CurrentTime.vue │ │ ├── main.js │ │ └── style.css ├── 1_10 │ ├── .browserslistrc │ ├── .editorconfig │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ └── index.html │ └── src │ │ ├── App.vue │ │ ├── assets │ │ └── logo.png │ │ ├── components │ │ ├── CurrentTime.vue │ │ └── TaskInput.vue │ │ ├── main.js │ │ └── style.css ├── 1_2 │ ├── .browserslistrc │ ├── .editorconfig │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ └── index.html │ └── src │ │ ├── App.vue │ │ ├── assets │ │ └── logo.png │ │ ├── components │ │ ├── CurrentTime.vue │ │ └── TaskInput.vue │ │ ├── main.js │ │ └── style.css ├── 1_3 │ ├── .browserslistrc │ ├── .editorconfig │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ └── index.html │ └── src │ │ ├── App.vue │ │ ├── assets │ │ └── logo.png │ │ ├── components │ │ ├── CurrentTime.vue │ │ └── TaskInput.vue │ │ ├── main.js │ │ └── style.css ├── 1_4 │ ├── .browserslistrc │ ├── .editorconfig │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ └── index.html │ └── src │ │ ├── App.vue │ │ ├── assets │ │ └── logo.png │ │ ├── components │ │ ├── CurrentTime.vue │ │ └── TaskInput.vue │ │ ├── main.js │ │ └── style.css ├── 1_5 │ ├── .browserslistrc │ ├── .editorconfig │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ └── index.html │ └── src │ │ ├── App.vue │ │ ├── assets │ │ └── logo.png │ │ ├── components │ │ ├── CurrentTime.vue │ │ └── TaskInput.vue │ │ ├── main.js │ │ └── style.css ├── 1_6 │ ├── .browserslistrc │ ├── .editorconfig │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ └── index.html │ └── src │ │ ├── App.vue │ │ ├── assets │ │ └── logo.png │ │ ├── components │ │ ├── CurrentTime.vue │ │ └── TaskInput.vue │ │ ├── main.js │ │ └── style.css ├── 1_7 │ ├── .browserslistrc │ ├── .editorconfig │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ └── index.html │ └── src │ │ ├── App.vue │ │ ├── assets │ │ └── logo.png │ │ ├── components │ │ ├── CurrentTime.vue │ │ └── TaskInput.vue │ │ ├── main.js │ │ └── style.css ├── 1_8 │ ├── .browserslistrc │ ├── .editorconfig │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ └── index.html │ └── src │ │ ├── App.vue │ │ ├── assets │ │ └── logo.png │ │ ├── components │ │ ├── CurrentTime.vue │ │ └── TaskInput.vue │ │ ├── main.js │ │ └── style.css ├── 1_9 │ ├── .browserslistrc │ ├── .editorconfig │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ └── index.html │ └── src │ │ ├── App.vue │ │ ├── assets │ │ └── logo.png │ │ ├── components │ │ ├── CurrentTime.vue │ │ └── TaskInput.vue │ │ ├── main.js │ │ └── style.css └── README.md ├── chapter-02 ├── 2_1 │ ├── .browserslistrc │ ├── .editorconfig │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ ├── favicon.ico │ │ └── index.html │ └── src │ │ ├── App.vue │ │ ├── assets │ │ └── logo.png │ │ ├── components │ │ └── MaterialCardBox.vue │ │ ├── main.js │ │ └── style │ │ └── elevation.css ├── 2_2 │ ├── .browserslistrc │ ├── .editorconfig │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ ├── favicon.ico │ │ └── index.html │ └── src │ │ ├── App.vue │ │ ├── assets │ │ └── logo.png │ │ ├── components │ │ └── MaterialCardBox.vue │ │ ├── main.js │ │ └── style │ │ ├── cardStyles.css │ │ └── elevation.css ├── 2_3 │ ├── .browserslistrc │ ├── .editorconfig │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ ├── favicon.ico │ │ └── index.html │ └── src │ │ ├── App.vue │ │ ├── assets │ │ └── logo.png │ │ ├── components │ │ └── MaterialCardBox.vue │ │ ├── main.js │ │ └── style │ │ ├── cardStyles.css │ │ └── elevation.css ├── 2_4 │ ├── .browserslistrc │ ├── .editorconfig │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ ├── favicon.ico │ │ └── index.html │ └── src │ │ ├── App.vue │ │ ├── assets │ │ └── logo.png │ │ ├── components │ │ ├── MaterialButton.vue │ │ └── MaterialCardBox.vue │ │ ├── main.js │ │ └── style │ │ ├── cardStyles.css │ │ └── elevation.css ├── 2_5 │ ├── .browserslistrc │ ├── .editorconfig │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ ├── favicon.ico │ │ └── index.html │ └── src │ │ ├── App.vue │ │ ├── assets │ │ └── logo.png │ │ ├── components │ │ ├── MaterialButton.vue │ │ ├── MaterialCardBox.vue │ │ ├── StarRating.vue │ │ ├── StarRatingDisplay.vue │ │ └── StarRatingInput.vue │ │ ├── main.js │ │ └── style │ │ ├── cardStyles.css │ │ ├── elevation.css │ │ ├── materialIcons.css │ │ └── starRating.css ├── 2_6 │ ├── .browserslistrc │ ├── .editorconfig │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ ├── favicon.ico │ │ └── index.html │ └── src │ │ ├── App.vue │ │ ├── assets │ │ └── logo.png │ │ ├── components │ │ ├── MaterialButton.vue │ │ ├── MaterialCardBox.vue │ │ ├── StarRating.vue │ │ ├── StarRatingDisplay.vue │ │ └── StarRatingInput.vue │ │ ├── main.js │ │ └── style │ │ ├── cardStyles.css │ │ ├── elevation.css │ │ ├── materialIcons.css │ │ └── starRating.css ├── 2_7 │ ├── .browserslistrc │ ├── .editorconfig │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ ├── favicon.ico │ │ └── index.html │ └── src │ │ ├── App.vue │ │ ├── assets │ │ └── logo.png │ │ ├── components │ │ ├── MaterialButton.vue │ │ ├── MaterialCardBox.vue │ │ ├── StarRating.vue │ │ ├── StarRatingDisplay.vue │ │ └── StarRatingInput.vue │ │ ├── main.js │ │ └── style │ │ ├── cardStyles.css │ │ ├── elevation.css │ │ ├── materialIcons.css │ │ └── starRating.css ├── 2_8 │ ├── .browserslistrc │ ├── .editorconfig │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ ├── favicon.ico │ │ └── index.html │ └── src │ │ ├── App.vue │ │ ├── assets │ │ └── logo.png │ │ ├── components │ │ ├── MaterialButton.vue │ │ ├── MaterialCardBox.vue │ │ ├── StarRating.vue │ │ ├── StarRatingDisplay.vue │ │ └── StarRatingInput.vue │ │ ├── main.js │ │ ├── mixins │ │ ├── starRatingBase.js │ │ ├── starRatingChild.js │ │ ├── starRatingDisplay.js │ │ └── starRatingName.js │ │ └── style │ │ ├── cardStyles.css │ │ ├── elevation.css │ │ ├── materialIcons.css │ │ └── starRating.css ├── 2_9 │ ├── .browserslistrc │ ├── .editorconfig │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ ├── favicon.ico │ │ └── index.html │ └── src │ │ ├── App.vue │ │ ├── assets │ │ └── logo.png │ │ ├── components │ │ ├── MaterialButton.vue │ │ ├── MaterialCardBox.vue │ │ ├── StarRating.vue │ │ ├── StarRatingDisplay.vue │ │ └── StarRatingInput.vue │ │ ├── main.js │ │ ├── mixins │ │ ├── starRatingBase.js │ │ ├── starRatingChild.js │ │ ├── starRatingDisplay.js │ │ └── starRatingName.js │ │ └── style │ │ ├── cardStyles.css │ │ ├── elevation.css │ │ ├── materialIcons.css │ │ └── starRating.css └── README.md ├── chapter-03 ├── 3_1 │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── .postcssrc.js │ ├── .stylintrc │ ├── .vscode │ │ ├── extensions.json │ │ └── settings.json │ ├── README.md │ ├── babel.config.js │ ├── jsconfig.json │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── app-logo-128x128.png │ │ └── icons │ │ │ ├── apple-icon-120x120.png │ │ │ ├── apple-icon-152x152.png │ │ │ ├── apple-icon-167x167.png │ │ │ ├── apple-icon-180x180.png │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon-96x96.png │ │ │ ├── favicon.ico │ │ │ ├── icon-128x128.png │ │ │ ├── icon-192x192.png │ │ │ ├── icon-256x256.png │ │ │ ├── icon-384x384.png │ │ │ ├── icon-512x512.png │ │ │ ├── ms-icon-144x144.png │ │ │ └── safari-pinned-tab.svg │ ├── quasar.conf.js │ └── src │ │ ├── App.vue │ │ ├── assets │ │ ├── quasar-logo-full.svg │ │ └── sad.svg │ │ ├── boot │ │ ├── .gitkeep │ │ └── axios.js │ │ ├── components │ │ └── .gitkeep │ │ ├── css │ │ ├── app.styl │ │ └── quasar.variables.styl │ │ ├── index.template.html │ │ ├── layouts │ │ └── MyLayout.vue │ │ ├── pages │ │ ├── Error404.vue │ │ └── Index.vue │ │ ├── router │ │ ├── index.js │ │ └── routes.js │ │ └── store │ │ ├── index.js │ │ ├── module-example │ │ ├── actions.js │ │ ├── getters.js │ │ ├── index.js │ │ ├── mutations.js │ │ └── state.js │ │ └── store-flag.d.ts ├── 3_2 │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── .graphqlconfig.yml │ ├── .postcssrc.js │ ├── .stylintrc │ ├── .vscode │ │ ├── extensions.json │ │ └── settings.json │ ├── README.md │ ├── babel.config.js │ ├── jsconfig.json │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── app-logo-128x128.png │ │ └── icons │ │ │ ├── apple-icon-120x120.png │ │ │ ├── apple-icon-152x152.png │ │ │ ├── apple-icon-167x167.png │ │ │ ├── apple-icon-180x180.png │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon-96x96.png │ │ │ ├── favicon.ico │ │ │ ├── icon-128x128.png │ │ │ ├── icon-192x192.png │ │ │ ├── icon-256x256.png │ │ │ ├── icon-384x384.png │ │ │ ├── icon-512x512.png │ │ │ ├── ms-icon-144x144.png │ │ │ └── safari-pinned-tab.svg │ ├── quasar.conf.js │ └── src │ │ ├── App.vue │ │ ├── assets │ │ ├── quasar-logo-full.svg │ │ └── sad.svg │ │ ├── boot │ │ ├── .gitkeep │ │ └── axios.js │ │ ├── chatApi.graphql │ │ ├── components │ │ └── .gitkeep │ │ ├── css │ │ ├── app.styl │ │ └── quasar.variables.styl │ │ ├── graphql │ │ ├── mutations.js │ │ ├── queries.js │ │ ├── schema.json │ │ └── subscriptions.js │ │ ├── index.template.html │ │ ├── layouts │ │ └── MyLayout.vue │ │ ├── pages │ │ ├── Error404.vue │ │ └── Index.vue │ │ ├── router │ │ ├── index.js │ │ └── routes.js │ │ └── store │ │ ├── index.js │ │ ├── module-example │ │ ├── actions.js │ │ ├── getters.js │ │ ├── index.js │ │ ├── mutations.js │ │ └── state.js │ │ └── store-flag.d.ts ├── 3_3 │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── .graphqlconfig.yml │ ├── .postcssrc.js │ ├── .stylintrc │ ├── .vscode │ │ ├── extensions.json │ │ └── settings.json │ ├── README.md │ ├── babel.config.js │ ├── jsconfig.json │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── app-logo-128x128.png │ │ └── icons │ │ │ ├── apple-icon-120x120.png │ │ │ ├── apple-icon-152x152.png │ │ │ ├── apple-icon-167x167.png │ │ │ ├── apple-icon-180x180.png │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon-96x96.png │ │ │ ├── favicon.ico │ │ │ ├── icon-128x128.png │ │ │ ├── icon-192x192.png │ │ │ ├── icon-256x256.png │ │ │ ├── icon-384x384.png │ │ │ ├── icon-512x512.png │ │ │ ├── ms-icon-144x144.png │ │ │ └── safari-pinned-tab.svg │ ├── quasar.conf.js │ └── src │ │ ├── App.vue │ │ ├── assets │ │ ├── quasar-logo-full.svg │ │ └── sad.svg │ │ ├── boot │ │ ├── .gitkeep │ │ ├── amplify.js │ │ └── axios.js │ │ ├── chatApi.graphql │ │ ├── components │ │ └── .gitkeep │ │ ├── css │ │ ├── app.styl │ │ └── quasar.variables.styl │ │ ├── driver │ │ └── graphql.js │ │ ├── graphql │ │ ├── mutations.js │ │ ├── queries.js │ │ ├── schema.json │ │ └── subscriptions.js │ │ ├── index.template.html │ │ ├── layouts │ │ └── MyLayout.vue │ │ ├── pages │ │ ├── Error404.vue │ │ └── Index.vue │ │ ├── router │ │ ├── index.js │ │ └── routes.js │ │ └── store │ │ ├── index.js │ │ ├── module-example │ │ ├── actions.js │ │ ├── getters.js │ │ ├── index.js │ │ ├── mutations.js │ │ └── state.js │ │ └── store-flag.d.ts ├── 3_4 │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── .graphqlconfig.yml │ ├── .postcssrc.js │ ├── .stylintrc │ ├── .vscode │ │ ├── extensions.json │ │ └── settings.json │ ├── README.md │ ├── babel.config.js │ ├── jsconfig.json │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── app-logo-128x128.png │ │ └── icons │ │ │ ├── apple-icon-120x120.png │ │ │ ├── apple-icon-152x152.png │ │ │ ├── apple-icon-167x167.png │ │ │ ├── apple-icon-180x180.png │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon-96x96.png │ │ │ ├── favicon.ico │ │ │ ├── icon-128x128.png │ │ │ ├── icon-192x192.png │ │ │ ├── icon-256x256.png │ │ │ ├── icon-384x384.png │ │ │ ├── icon-512x512.png │ │ │ ├── ms-icon-144x144.png │ │ │ └── safari-pinned-tab.svg │ ├── quasar.conf.js │ └── src │ │ ├── App.vue │ │ ├── assets │ │ ├── quasar-logo-full.svg │ │ └── sad.svg │ │ ├── boot │ │ ├── .gitkeep │ │ ├── amplify.js │ │ └── axios.js │ │ ├── chatApi.graphql │ │ ├── components │ │ └── .gitkeep │ │ ├── css │ │ ├── app.styl │ │ └── quasar.variables.styl │ │ ├── driver │ │ ├── appsync.js │ │ ├── auth.js │ │ ├── bucket.js │ │ └── graphql.js │ │ ├── graphql │ │ ├── mutations.js │ │ ├── queries.js │ │ ├── schema.json │ │ └── subscriptions.js │ │ ├── index.template.html │ │ ├── layouts │ │ └── MyLayout.vue │ │ ├── pages │ │ ├── Error404.vue │ │ └── Index.vue │ │ ├── router │ │ ├── index.js │ │ └── routes.js │ │ └── store │ │ ├── index.js │ │ ├── module-example │ │ ├── actions.js │ │ ├── getters.js │ │ ├── index.js │ │ ├── mutations.js │ │ └── state.js │ │ └── store-flag.d.ts └── README.md ├── chapter-04 ├── 4_1 │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── .graphqlconfig.yml │ ├── .postcssrc.js │ ├── .stylintrc │ ├── .vscode │ │ ├── extensions.json │ │ └── settings.json │ ├── README.md │ ├── babel.config.js │ ├── jsconfig.json │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── app-logo-128x128.png │ │ └── icons │ │ │ ├── apple-icon-120x120.png │ │ │ ├── apple-icon-152x152.png │ │ │ ├── apple-icon-167x167.png │ │ │ ├── apple-icon-180x180.png │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon-96x96.png │ │ │ ├── favicon.ico │ │ │ ├── icon-128x128.png │ │ │ ├── icon-192x192.png │ │ │ ├── icon-256x256.png │ │ │ ├── icon-384x384.png │ │ │ ├── icon-512x512.png │ │ │ ├── ms-icon-144x144.png │ │ │ └── safari-pinned-tab.svg │ ├── quasar.conf.js │ └── src │ │ ├── App.vue │ │ ├── assets │ │ ├── quasar-logo-full.svg │ │ └── sad.svg │ │ ├── boot │ │ ├── .gitkeep │ │ ├── amplify.js │ │ └── axios.js │ │ ├── chatApi.graphql │ │ ├── components │ │ ├── .gitkeep │ │ ├── AvatarDisplay.vue │ │ ├── AvatarInput.vue │ │ ├── EmailInput.vue │ │ ├── NameInput.vue │ │ ├── PasswordInput.vue │ │ └── UsernameInput.vue │ │ ├── css │ │ ├── app.styl │ │ └── quasar.variables.styl │ │ ├── driver │ │ ├── appsync.js │ │ ├── auth.js │ │ ├── bucket.js │ │ └── graphql.js │ │ ├── graphql │ │ ├── mutations.js │ │ ├── queries.js │ │ ├── schema.json │ │ └── subscriptions.js │ │ ├── index.template.html │ │ ├── layouts │ │ └── MyLayout.vue │ │ ├── mixins │ │ └── getAvatar.js │ │ ├── pages │ │ ├── Error404.vue │ │ └── Index.vue │ │ ├── router │ │ ├── index.js │ │ └── routes.js │ │ └── store │ │ ├── index.js │ │ ├── module-example │ │ ├── actions.js │ │ ├── getters.js │ │ ├── index.js │ │ ├── mutations.js │ │ └── state.js │ │ └── store-flag.d.ts ├── 4_2 │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── .graphqlconfig.yml │ ├── .postcssrc.js │ ├── .stylintrc │ ├── .vscode │ │ ├── extensions.json │ │ └── settings.json │ ├── README.md │ ├── babel.config.js │ ├── jsconfig.json │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── app-logo-128x128.png │ │ └── icons │ │ │ ├── apple-icon-120x120.png │ │ │ ├── apple-icon-152x152.png │ │ │ ├── apple-icon-167x167.png │ │ │ ├── apple-icon-180x180.png │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon-96x96.png │ │ │ ├── favicon.ico │ │ │ ├── icon-128x128.png │ │ │ ├── icon-192x192.png │ │ │ ├── icon-256x256.png │ │ │ ├── icon-384x384.png │ │ │ ├── icon-512x512.png │ │ │ ├── ms-icon-144x144.png │ │ │ └── safari-pinned-tab.svg │ ├── quasar.conf.js │ └── src │ │ ├── App.vue │ │ ├── assets │ │ ├── quasar-logo-full.svg │ │ └── sad.svg │ │ ├── boot │ │ ├── .gitkeep │ │ ├── amplify.js │ │ └── axios.js │ │ ├── chatApi.graphql │ │ ├── components │ │ ├── .gitkeep │ │ ├── AvatarDisplay.vue │ │ ├── AvatarInput.vue │ │ ├── EmailInput.vue │ │ ├── NameInput.vue │ │ ├── PasswordInput.vue │ │ └── UsernameInput.vue │ │ ├── css │ │ ├── app.styl │ │ └── quasar.variables.styl │ │ ├── driver │ │ ├── appsync.js │ │ ├── auth.js │ │ ├── bucket.js │ │ └── graphql.js │ │ ├── graphql │ │ ├── mutations.js │ │ ├── queries.js │ │ ├── schema.json │ │ └── subscriptions.js │ │ ├── index.template.html │ │ ├── layouts │ │ ├── Base.vue │ │ ├── Chat.vue │ │ └── MyLayout.vue │ │ ├── mixins │ │ └── getAvatar.js │ │ ├── pages │ │ ├── Error404.vue │ │ └── Index.vue │ │ ├── router │ │ ├── index.js │ │ └── routes.js │ │ └── store │ │ ├── index.js │ │ ├── module-example │ │ ├── actions.js │ │ ├── getters.js │ │ ├── index.js │ │ ├── mutations.js │ │ └── state.js │ │ ├── store-flag.d.ts │ │ └── user │ │ ├── actions.js │ │ ├── getters.js │ │ ├── index.js │ │ ├── mutations.js │ │ ├── state.js │ │ └── types.js └── README.md ├── chapter-05 ├── 5_1 │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── .graphqlconfig.yml │ ├── .postcssrc.js │ ├── .stylintrc │ ├── .vscode │ │ ├── extensions.json │ │ └── settings.json │ ├── README.md │ ├── babel.config.js │ ├── jsconfig.json │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── app-logo-128x128.png │ │ └── icons │ │ │ ├── apple-icon-120x120.png │ │ │ ├── apple-icon-152x152.png │ │ │ ├── apple-icon-167x167.png │ │ │ ├── apple-icon-180x180.png │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon-96x96.png │ │ │ ├── favicon.ico │ │ │ ├── icon-128x128.png │ │ │ ├── icon-192x192.png │ │ │ ├── icon-256x256.png │ │ │ ├── icon-384x384.png │ │ │ ├── icon-512x512.png │ │ │ ├── ms-icon-144x144.png │ │ │ └── safari-pinned-tab.svg │ ├── quasar.conf.js │ └── src │ │ ├── App.vue │ │ ├── assets │ │ ├── quasar-logo-full.svg │ │ └── sad.svg │ │ ├── boot │ │ ├── .gitkeep │ │ ├── amplify.js │ │ └── axios.js │ │ ├── chatApi.graphql │ │ ├── components │ │ ├── .gitkeep │ │ ├── AvatarDisplay.vue │ │ ├── AvatarInput.vue │ │ ├── EmailInput.vue │ │ ├── NameInput.vue │ │ ├── PasswordInput.vue │ │ └── UsernameInput.vue │ │ ├── css │ │ ├── app.styl │ │ └── quasar.variables.styl │ │ ├── driver │ │ ├── appsync.js │ │ ├── auth.js │ │ ├── bucket.js │ │ └── graphql.js │ │ ├── graphql │ │ ├── fragments.js │ │ ├── mutations.js │ │ ├── queries.js │ │ ├── schema.json │ │ └── subscriptions.js │ │ ├── index.template.html │ │ ├── layouts │ │ ├── .gitkeep │ │ └── MyLayout.vue │ │ ├── mixins │ │ └── getAvatar.js │ │ ├── pages │ │ ├── .gitkeep │ │ ├── Error404.vue │ │ └── Index.vue │ │ ├── router │ │ ├── index.js │ │ └── routes.js │ │ └── store │ │ ├── index.js │ │ ├── module-example │ │ ├── actions.js │ │ ├── getters.js │ │ ├── index.js │ │ ├── mutations.js │ │ └── state.js │ │ ├── store-flag.d.ts │ │ └── user │ │ ├── actions.js │ │ ├── getters.js │ │ ├── index.js │ │ ├── mutations.js │ │ ├── state.js │ │ └── types.js ├── 5_2 │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── .graphqlconfig.yml │ ├── .postcssrc.js │ ├── .stylintrc │ ├── .vscode │ │ ├── extensions.json │ │ └── settings.json │ ├── README.md │ ├── babel.config.js │ ├── jsconfig.json │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── app-logo-128x128.png │ │ └── icons │ │ │ ├── apple-icon-120x120.png │ │ │ ├── apple-icon-152x152.png │ │ │ ├── apple-icon-167x167.png │ │ │ ├── apple-icon-180x180.png │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon-96x96.png │ │ │ ├── favicon.ico │ │ │ ├── icon-128x128.png │ │ │ ├── icon-192x192.png │ │ │ ├── icon-256x256.png │ │ │ ├── icon-384x384.png │ │ │ ├── icon-512x512.png │ │ │ ├── ms-icon-144x144.png │ │ │ └── safari-pinned-tab.svg │ ├── quasar.conf.js │ └── src │ │ ├── App.vue │ │ ├── assets │ │ ├── quasar-logo-full.svg │ │ └── sad.svg │ │ ├── boot │ │ ├── .gitkeep │ │ ├── amplify.js │ │ ├── axios.js │ │ └── routeGuard.js │ │ ├── chatApi.graphql │ │ ├── components │ │ ├── .gitkeep │ │ ├── AvatarDisplay.vue │ │ ├── AvatarInput.vue │ │ ├── EmailInput.vue │ │ ├── NameInput.vue │ │ ├── PasswordInput.vue │ │ └── UsernameInput.vue │ │ ├── css │ │ ├── app.styl │ │ └── quasar.variables.styl │ │ ├── driver │ │ ├── appsync.js │ │ ├── auth.js │ │ ├── bucket.js │ │ └── graphql.js │ │ ├── graphql │ │ ├── fragments.js │ │ ├── mutations.js │ │ ├── queries.js │ │ ├── schema.json │ │ └── subscriptions.js │ │ ├── index.template.html │ │ ├── layouts │ │ ├── Base.vue │ │ └── Chat.vue │ │ ├── mixins │ │ └── getAvatar.js │ │ ├── pages │ │ ├── Contacts.vue │ │ ├── Edit.vue │ │ ├── Error404.vue │ │ ├── Index.vue │ │ ├── Messages.vue │ │ ├── SignUp.vue │ │ └── Validate.vue │ │ ├── router │ │ ├── index.js │ │ └── routes.js │ │ └── store │ │ ├── index.js │ │ ├── module-example │ │ ├── actions.js │ │ ├── getters.js │ │ ├── index.js │ │ ├── mutations.js │ │ └── state.js │ │ ├── store-flag.d.ts │ │ └── user │ │ ├── actions.js │ │ ├── getters.js │ │ ├── index.js │ │ ├── mutations.js │ │ ├── state.js │ │ └── types.js └── README.md ├── chapter-06 ├── 6_1 │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── .graphqlconfig.yml │ ├── .postcssrc.js │ ├── .stylintrc │ ├── .vscode │ │ ├── extensions.json │ │ └── settings.json │ ├── README.md │ ├── babel.config.js │ ├── jsconfig.json │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── app-logo-128x128.png │ │ └── icons │ │ │ ├── apple-icon-120x120.png │ │ │ ├── apple-icon-152x152.png │ │ │ ├── apple-icon-167x167.png │ │ │ ├── apple-icon-180x180.png │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon-96x96.png │ │ │ ├── favicon.ico │ │ │ ├── icon-128x128.png │ │ │ ├── icon-192x192.png │ │ │ ├── icon-256x256.png │ │ │ ├── icon-384x384.png │ │ │ ├── icon-512x512.png │ │ │ ├── ms-icon-144x144.png │ │ │ └── safari-pinned-tab.svg │ ├── quasar.conf.js │ └── src │ │ ├── App.vue │ │ ├── assets │ │ ├── quasar-logo-full.svg │ │ └── sad.svg │ │ ├── boot │ │ ├── .gitkeep │ │ ├── amplify.js │ │ ├── axios.js │ │ └── routeGuard.js │ │ ├── chatApi.graphql │ │ ├── components │ │ ├── .gitkeep │ │ ├── AvatarDisplay.vue │ │ ├── AvatarInput.vue │ │ ├── EmailInput.vue │ │ ├── NameInput.vue │ │ ├── PasswordInput.vue │ │ └── UsernameInput.vue │ │ ├── css │ │ ├── app.styl │ │ └── quasar.variables.styl │ │ ├── driver │ │ ├── appsync.js │ │ ├── auth.js │ │ ├── bucket.js │ │ └── graphql.js │ │ ├── graphql │ │ ├── fragments.js │ │ ├── mutations.js │ │ ├── queries.js │ │ ├── schema.json │ │ └── subscriptions.js │ │ ├── index.template.html │ │ ├── layouts │ │ ├── Base.vue │ │ └── Chat.vue │ │ ├── mixins │ │ └── getAvatar.js │ │ ├── pages │ │ ├── Contacts.vue │ │ ├── Edit.vue │ │ ├── Error404.vue │ │ ├── Index.vue │ │ ├── Messages.vue │ │ ├── SignUp.vue │ │ └── Validate.vue │ │ ├── router │ │ ├── index.js │ │ └── routes.js │ │ └── store │ │ ├── index.js │ │ ├── module-example │ │ ├── actions.js │ │ ├── getters.js │ │ ├── index.js │ │ ├── mutations.js │ │ └── state.js │ │ ├── store-flag.d.ts │ │ └── user │ │ ├── actions.js │ │ ├── getters.js │ │ ├── index.js │ │ ├── mutations.js │ │ ├── state.js │ │ └── types.js ├── 6_2 │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── .graphqlconfig.yml │ ├── .postcssrc.js │ ├── .stylintrc │ ├── .vscode │ │ ├── extensions.json │ │ └── settings.json │ ├── README.md │ ├── babel.config.js │ ├── jsconfig.json │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── app-logo-128x128.png │ │ └── icons │ │ │ ├── apple-icon-120x120.png │ │ │ ├── apple-icon-152x152.png │ │ │ ├── apple-icon-167x167.png │ │ │ ├── apple-icon-180x180.png │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon-96x96.png │ │ │ ├── favicon.ico │ │ │ ├── icon-128x128.png │ │ │ ├── icon-192x192.png │ │ │ ├── icon-256x256.png │ │ │ ├── icon-384x384.png │ │ │ ├── icon-512x512.png │ │ │ ├── ms-icon-144x144.png │ │ │ └── safari-pinned-tab.svg │ ├── quasar.conf.js │ └── src │ │ ├── App.vue │ │ ├── assets │ │ ├── quasar-logo-full.svg │ │ └── sad.svg │ │ ├── boot │ │ ├── .gitkeep │ │ ├── amplify.js │ │ ├── axios.js │ │ └── routeGuard.js │ │ ├── chatApi.graphql │ │ ├── components │ │ ├── .gitkeep │ │ ├── AvatarDisplay.vue │ │ ├── AvatarInput.vue │ │ ├── EmailInput.vue │ │ ├── NameInput.vue │ │ ├── PasswordInput.vue │ │ └── UsernameInput.vue │ │ ├── css │ │ ├── app.styl │ │ └── quasar.variables.styl │ │ ├── driver │ │ ├── appsync.js │ │ ├── auth.js │ │ ├── bucket.js │ │ └── graphql.js │ │ ├── graphql │ │ ├── fragments.js │ │ ├── mutations.js │ │ ├── queries.js │ │ ├── schema.json │ │ └── subscriptions.js │ │ ├── index.template.html │ │ ├── layouts │ │ ├── Base.vue │ │ └── Chat.vue │ │ ├── mixins │ │ └── getAvatar.js │ │ ├── pages │ │ ├── Contacts.vue │ │ ├── Edit.vue │ │ ├── Error404.vue │ │ ├── Index.vue │ │ ├── Messages.vue │ │ ├── SignUp.vue │ │ └── Validate.vue │ │ ├── router │ │ ├── index.js │ │ └── routes.js │ │ └── store │ │ ├── chat │ │ ├── actions.js │ │ ├── getters.js │ │ ├── index.js │ │ ├── mutations.js │ │ ├── state.js │ │ └── types.js │ │ ├── index.js │ │ ├── module-example │ │ ├── actions.js │ │ ├── getters.js │ │ ├── index.js │ │ ├── mutations.js │ │ └── state.js │ │ ├── store-flag.d.ts │ │ └── user │ │ ├── actions.js │ │ ├── getters.js │ │ ├── index.js │ │ ├── mutations.js │ │ ├── state.js │ │ └── types.js ├── 6_3 │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── .graphqlconfig.yml │ ├── .postcssrc.js │ ├── .stylintrc │ ├── .vscode │ │ ├── extensions.json │ │ └── settings.json │ ├── README.md │ ├── babel.config.js │ ├── jsconfig.json │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── app-logo-128x128.png │ │ └── icons │ │ │ ├── apple-icon-120x120.png │ │ │ ├── apple-icon-152x152.png │ │ │ ├── apple-icon-167x167.png │ │ │ ├── apple-icon-180x180.png │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon-96x96.png │ │ │ ├── favicon.ico │ │ │ ├── icon-128x128.png │ │ │ ├── icon-192x192.png │ │ │ ├── icon-256x256.png │ │ │ ├── icon-384x384.png │ │ │ ├── icon-512x512.png │ │ │ ├── ms-icon-144x144.png │ │ │ └── safari-pinned-tab.svg │ ├── quasar.conf.js │ └── src │ │ ├── App.vue │ │ ├── assets │ │ ├── quasar-logo-full.svg │ │ └── sad.svg │ │ ├── boot │ │ ├── .gitkeep │ │ ├── amplify.js │ │ ├── axios.js │ │ └── routeGuard.js │ │ ├── chatApi.graphql │ │ ├── components │ │ ├── .gitkeep │ │ ├── AvatarDisplay.vue │ │ ├── AvatarInput.vue │ │ ├── EmailInput.vue │ │ ├── NameInput.vue │ │ ├── NewConversation.vue │ │ ├── PasswordInput.vue │ │ └── UsernameInput.vue │ │ ├── css │ │ ├── app.styl │ │ └── quasar.variables.styl │ │ ├── driver │ │ ├── appsync.js │ │ ├── auth.js │ │ ├── bucket.js │ │ └── graphql.js │ │ ├── graphql │ │ ├── fragments.js │ │ ├── mutations.js │ │ ├── queries.js │ │ ├── schema.json │ │ └── subscriptions.js │ │ ├── index.template.html │ │ ├── layouts │ │ ├── Base.vue │ │ └── Chat.vue │ │ ├── mixins │ │ └── getAvatar.js │ │ ├── pages │ │ ├── Contacts.vue │ │ ├── Edit.vue │ │ ├── Error404.vue │ │ ├── Index.vue │ │ ├── Messages.vue │ │ ├── SignUp.vue │ │ └── Validate.vue │ │ ├── router │ │ ├── index.js │ │ └── routes.js │ │ └── store │ │ ├── chat │ │ ├── actions.js │ │ ├── getters.js │ │ ├── index.js │ │ ├── mutations.js │ │ ├── state.js │ │ └── types.js │ │ ├── index.js │ │ ├── module-example │ │ ├── actions.js │ │ ├── getters.js │ │ ├── index.js │ │ ├── mutations.js │ │ └── state.js │ │ ├── store-flag.d.ts │ │ └── user │ │ ├── actions.js │ │ ├── getters.js │ │ ├── index.js │ │ ├── mutations.js │ │ ├── state.js │ │ └── types.js ├── 6_4 │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── .graphqlconfig.yml │ ├── .postcssrc.js │ ├── .stylintrc │ ├── .vscode │ │ ├── extensions.json │ │ └── settings.json │ ├── README.md │ ├── babel.config.js │ ├── jsconfig.json │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── app-logo-128x128.png │ │ └── icons │ │ │ ├── apple-icon-120x120.png │ │ │ ├── apple-icon-152x152.png │ │ │ ├── apple-icon-167x167.png │ │ │ ├── apple-icon-180x180.png │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon-96x96.png │ │ │ ├── favicon.ico │ │ │ ├── icon-128x128.png │ │ │ ├── icon-192x192.png │ │ │ ├── icon-256x256.png │ │ │ ├── icon-384x384.png │ │ │ ├── icon-512x512.png │ │ │ ├── ms-icon-144x144.png │ │ │ └── safari-pinned-tab.svg │ ├── quasar.conf.js │ └── src │ │ ├── App.vue │ │ ├── assets │ │ ├── quasar-logo-full.svg │ │ └── sad.svg │ │ ├── boot │ │ ├── .gitkeep │ │ ├── amplify.js │ │ ├── axios.js │ │ └── routeGuard.js │ │ ├── chatApi.graphql │ │ ├── components │ │ ├── .gitkeep │ │ ├── AvatarDisplay.vue │ │ ├── AvatarInput.vue │ │ ├── ChatInput.vue │ │ ├── EmailInput.vue │ │ ├── NameInput.vue │ │ ├── NewConversation.vue │ │ ├── PasswordInput.vue │ │ └── UsernameInput.vue │ │ ├── css │ │ ├── app.styl │ │ └── quasar.variables.styl │ │ ├── driver │ │ ├── appsync.js │ │ ├── auth.js │ │ ├── bucket.js │ │ └── graphql.js │ │ ├── graphql │ │ ├── fragments.js │ │ ├── mutations.js │ │ ├── queries.js │ │ ├── schema.json │ │ └── subscriptions.js │ │ ├── index.template.html │ │ ├── layouts │ │ ├── Base.vue │ │ ├── Chat.vue │ │ └── Messages.vue │ │ ├── mixins │ │ └── getAvatar.js │ │ ├── pages │ │ ├── Contacts.vue │ │ ├── Edit.vue │ │ ├── Error404.vue │ │ ├── Index.vue │ │ ├── Messages.vue │ │ ├── SignUp.vue │ │ └── Validate.vue │ │ ├── router │ │ ├── index.js │ │ └── routes.js │ │ └── store │ │ ├── chat │ │ ├── actions.js │ │ ├── getters.js │ │ ├── index.js │ │ ├── mutations.js │ │ ├── state.js │ │ └── types.js │ │ ├── index.js │ │ ├── module-example │ │ ├── actions.js │ │ ├── getters.js │ │ ├── index.js │ │ ├── mutations.js │ │ └── state.js │ │ ├── store-flag.d.ts │ │ └── user │ │ ├── actions.js │ │ ├── getters.js │ │ ├── index.js │ │ ├── mutations.js │ │ ├── state.js │ │ └── types.js └── README.md └── chapter-07 ├── 7_1 ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .graphqlconfig.yml ├── .postcssrc.js ├── .stylintrc ├── .vscode │ ├── extensions.json │ └── settings.json ├── README.md ├── babel.config.js ├── jsconfig.json ├── package-lock.json ├── package.json ├── public │ ├── app-logo-128x128.png │ └── icons │ │ ├── apple-icon-120x120.png │ │ ├── apple-icon-152x152.png │ │ ├── apple-icon-167x167.png │ │ ├── apple-icon-180x180.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon-96x96.png │ │ ├── favicon.ico │ │ ├── icon-128x128.png │ │ ├── icon-192x192.png │ │ ├── icon-256x256.png │ │ ├── icon-384x384.png │ │ ├── icon-512x512.png │ │ ├── ms-icon-144x144.png │ │ └── safari-pinned-tab.svg ├── quasar.conf.js ├── src-pwa │ ├── custom-service-worker.js │ ├── pwa-flag.d.ts │ └── register-service-worker.js └── src │ ├── App.vue │ ├── assets │ ├── quasar-logo-full.svg │ └── sad.svg │ ├── boot │ ├── .gitkeep │ ├── amplify.js │ ├── axios.js │ └── routeGuard.js │ ├── chatApi.graphql │ ├── components │ ├── .gitkeep │ ├── AvatarDisplay.vue │ ├── AvatarInput.vue │ ├── ChatInput.vue │ ├── EmailInput.vue │ ├── NameInput.vue │ ├── NewConversation.vue │ ├── PasswordInput.vue │ └── UsernameInput.vue │ ├── css │ ├── app.styl │ └── quasar.variables.styl │ ├── driver │ ├── appsync.js │ ├── auth.js │ ├── bucket.js │ └── graphql.js │ ├── graphql │ ├── fragments.js │ ├── mutations.js │ ├── queries.js │ ├── schema.json │ └── subscriptions.js │ ├── index.template.html │ ├── layouts │ ├── Base.vue │ ├── Chat.vue │ └── Messages.vue │ ├── mixins │ └── getAvatar.js │ ├── pages │ ├── Contacts.vue │ ├── Edit.vue │ ├── Error404.vue │ ├── Index.vue │ ├── Messages.vue │ ├── SignUp.vue │ └── Validate.vue │ ├── router │ ├── index.js │ └── routes.js │ └── store │ ├── chat │ ├── actions.js │ ├── getters.js │ ├── index.js │ ├── mutations.js │ ├── state.js │ └── types.js │ ├── index.js │ ├── module-example │ ├── actions.js │ ├── getters.js │ ├── index.js │ ├── mutations.js │ └── state.js │ ├── store-flag.d.ts │ └── user │ ├── actions.js │ ├── getters.js │ ├── index.js │ ├── mutations.js │ ├── state.js │ └── types.js ├── 7_2 ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .graphqlconfig.yml ├── .postcssrc.js ├── .stylintrc ├── .vscode │ ├── extensions.json │ └── settings.json ├── README.md ├── babel.config.js ├── jsconfig.json ├── package-lock.json ├── package.json ├── public │ ├── app-logo-128x128.png │ └── icons │ │ ├── apple-icon-120x120.png │ │ ├── apple-icon-152x152.png │ │ ├── apple-icon-167x167.png │ │ ├── apple-icon-180x180.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon-96x96.png │ │ ├── favicon.ico │ │ ├── icon-128x128.png │ │ ├── icon-192x192.png │ │ ├── icon-256x256.png │ │ ├── icon-384x384.png │ │ ├── icon-512x512.png │ │ ├── ms-icon-144x144.png │ │ └── safari-pinned-tab.svg ├── quasar.conf.js ├── src-pwa │ ├── custom-service-worker.js │ ├── pwa-flag.d.ts │ └── register-service-worker.js └── src │ ├── App.vue │ ├── assets │ ├── quasar-logo-full.svg │ └── sad.svg │ ├── boot │ ├── .gitkeep │ ├── amplify.js │ ├── axios.js │ └── routeGuard.js │ ├── chatApi.graphql │ ├── components │ ├── .gitkeep │ ├── AvatarDisplay.vue │ ├── AvatarInput.vue │ ├── ChatInput.vue │ ├── EmailInput.vue │ ├── NameInput.vue │ ├── NewConversation.vue │ ├── PasswordInput.vue │ └── UsernameInput.vue │ ├── css │ ├── app.styl │ └── quasar.variables.styl │ ├── driver │ ├── appsync.js │ ├── auth.js │ ├── bucket.js │ └── graphql.js │ ├── graphql │ ├── fragments.js │ ├── mutations.js │ ├── queries.js │ ├── schema.json │ └── subscriptions.js │ ├── index.template.html │ ├── layouts │ ├── Base.vue │ ├── Chat.vue │ └── Messages.vue │ ├── mixins │ └── getAvatar.js │ ├── pages │ ├── Contacts.vue │ ├── Edit.vue │ ├── Error404.vue │ ├── Index.vue │ ├── Messages.vue │ ├── SignUp.vue │ └── Validate.vue │ ├── router │ ├── index.js │ └── routes.js │ └── store │ ├── chat │ ├── actions.js │ ├── getters.js │ ├── index.js │ ├── mutations.js │ ├── state.js │ └── types.js │ ├── index.js │ ├── module-example │ ├── actions.js │ ├── getters.js │ ├── index.js │ ├── mutations.js │ └── state.js │ ├── store-flag.d.ts │ └── user │ ├── actions.js │ ├── getters.js │ ├── index.js │ ├── mutations.js │ ├── state.js │ └── types.js ├── 7_3 ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .graphqlconfig.yml ├── .postcssrc.js ├── .stylintrc ├── .vscode │ ├── extensions.json │ └── settings.json ├── README.md ├── babel.config.js ├── jsconfig.json ├── package-lock.json ├── package.json ├── public │ ├── app-logo-128x128.png │ └── icons │ │ ├── apple-icon-120x120.png │ │ ├── apple-icon-152x152.png │ │ ├── apple-icon-167x167.png │ │ ├── apple-icon-180x180.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon-96x96.png │ │ ├── favicon.ico │ │ ├── icon-128x128.png │ │ ├── icon-192x192.png │ │ ├── icon-256x256.png │ │ ├── icon-384x384.png │ │ ├── icon-512x512.png │ │ ├── ms-icon-144x144.png │ │ └── safari-pinned-tab.svg ├── quasar.conf.js ├── src-pwa │ ├── custom-service-worker.js │ ├── pwa-flag.d.ts │ └── register-service-worker.js └── src │ ├── App.vue │ ├── assets │ ├── quasar-logo-full.svg │ └── sad.svg │ ├── boot │ ├── .gitkeep │ ├── a2hs.js │ ├── amplify.js │ ├── axios.js │ └── routeGuard.js │ ├── chatApi.graphql │ ├── components │ ├── .gitkeep │ ├── AvatarDisplay.vue │ ├── AvatarInput.vue │ ├── ChatInput.vue │ ├── EmailInput.vue │ ├── NameInput.vue │ ├── NewConversation.vue │ ├── PasswordInput.vue │ └── UsernameInput.vue │ ├── css │ ├── app.styl │ └── quasar.variables.styl │ ├── driver │ ├── appsync.js │ ├── auth.js │ ├── bucket.js │ └── graphql.js │ ├── graphql │ ├── fragments.js │ ├── mutations.js │ ├── queries.js │ ├── schema.json │ └── subscriptions.js │ ├── index.template.html │ ├── layouts │ ├── Base.vue │ ├── Chat.vue │ └── Messages.vue │ ├── mixins │ └── getAvatar.js │ ├── pages │ ├── Contacts.vue │ ├── Edit.vue │ ├── Error404.vue │ ├── Index.vue │ ├── Messages.vue │ ├── SignUp.vue │ └── Validate.vue │ ├── router │ ├── index.js │ └── routes.js │ └── store │ ├── chat │ ├── actions.js │ ├── getters.js │ ├── index.js │ ├── mutations.js │ ├── state.js │ └── types.js │ ├── index.js │ ├── module-example │ ├── actions.js │ ├── getters.js │ ├── index.js │ ├── mutations.js │ └── state.js │ ├── store-flag.d.ts │ └── user │ ├── actions.js │ ├── getters.js │ ├── index.js │ ├── mutations.js │ ├── state.js │ └── types.js ├── 7_4 ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .graphqlconfig.yml ├── .postcssrc.js ├── .stylintrc ├── .vscode │ ├── extensions.json │ └── settings.json ├── README.md ├── babel.config.js ├── jsconfig.json ├── package-lock.json ├── package.json ├── public │ ├── app-logo-128x128.png │ └── icons │ │ ├── apple-icon-120x120.png │ │ ├── apple-icon-152x152.png │ │ ├── apple-icon-167x167.png │ │ ├── apple-icon-180x180.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon-96x96.png │ │ ├── favicon.ico │ │ ├── icon-128x128.png │ │ ├── icon-192x192.png │ │ ├── icon-256x256.png │ │ ├── icon-384x384.png │ │ ├── icon-512x512.png │ │ ├── ms-icon-144x144.png │ │ └── safari-pinned-tab.svg ├── quasar.conf.js ├── src-pwa │ ├── custom-service-worker.js │ ├── pwa-flag.d.ts │ └── register-service-worker.js └── src │ ├── App.vue │ ├── assets │ ├── quasar-logo-full.svg │ └── sad.svg │ ├── boot │ ├── .gitkeep │ ├── a2hs.js │ ├── amplify.js │ ├── axios.js │ └── routeGuard.js │ ├── chatApi.graphql │ ├── components │ ├── .gitkeep │ ├── AvatarDisplay.vue │ ├── AvatarInput.vue │ ├── ChatInput.vue │ ├── EmailInput.vue │ ├── NameInput.vue │ ├── NewConversation.vue │ ├── PasswordInput.vue │ └── UsernameInput.vue │ ├── css │ ├── app.styl │ └── quasar.variables.styl │ ├── driver │ ├── appsync.js │ ├── auth.js │ ├── bucket.js │ └── graphql.js │ ├── graphql │ ├── fragments.js │ ├── mutations.js │ ├── queries.js │ ├── schema.json │ └── subscriptions.js │ ├── index.template.html │ ├── layouts │ ├── Base.vue │ ├── Chat.vue │ └── Messages.vue │ ├── mixins │ └── getAvatar.js │ ├── pages │ ├── Contacts.vue │ ├── Edit.vue │ ├── Error404.vue │ ├── Index.vue │ ├── Messages.vue │ ├── SignUp.vue │ └── Validate.vue │ ├── router │ ├── index.js │ └── routes.js │ └── store │ ├── chat │ ├── actions.js │ ├── getters.js │ ├── index.js │ ├── mutations.js │ ├── state.js │ └── types.js │ ├── index.js │ ├── module-example │ ├── actions.js │ ├── getters.js │ ├── index.js │ ├── mutations.js │ └── state.js │ ├── store-flag.d.ts │ └── user │ ├── actions.js │ ├── getters.js │ ├── index.js │ ├── mutations.js │ ├── state.js │ └── types.js ├── 7_5 ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .graphqlconfig.yml ├── .postcssrc.js ├── .stylintrc ├── .vscode │ ├── extensions.json │ └── settings.json ├── README.md ├── babel.config.js ├── jsconfig.json ├── package-lock.json ├── package.json ├── public │ ├── app-logo-128x128.png │ └── icons │ │ ├── apple-icon-120x120.png │ │ ├── apple-icon-152x152.png │ │ ├── apple-icon-167x167.png │ │ ├── apple-icon-180x180.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon-96x96.png │ │ ├── favicon.ico │ │ ├── icon-128x128.png │ │ ├── icon-192x192.png │ │ ├── icon-256x256.png │ │ ├── icon-384x384.png │ │ ├── icon-512x512.png │ │ ├── ms-icon-144x144.png │ │ └── safari-pinned-tab.svg ├── quasar.conf.js ├── src-pwa │ ├── custom-service-worker.js │ ├── pwa-flag.d.ts │ └── register-service-worker.js └── src │ ├── App.vue │ ├── assets │ ├── quasar-logo-full.svg │ └── sad.svg │ ├── boot │ ├── .gitkeep │ ├── a2hs.js │ ├── amplify.js │ ├── axios.js │ └── routeGuard.js │ ├── chatApi.graphql │ ├── components │ ├── .gitkeep │ ├── AvatarDisplay.vue │ ├── AvatarInput.vue │ ├── ChatInput.vue │ ├── EmailInput.vue │ ├── NameInput.vue │ ├── NewConversation.vue │ ├── PasswordInput.vue │ └── UsernameInput.vue │ ├── css │ ├── app.styl │ └── quasar.variables.styl │ ├── driver │ ├── appsync.js │ ├── auth.js │ ├── bucket.js │ └── graphql.js │ ├── graphql │ ├── fragments.js │ ├── mutations.js │ ├── queries.js │ ├── schema.json │ └── subscriptions.js │ ├── index.template.html │ ├── layouts │ ├── Base.vue │ ├── Chat.vue │ └── Messages.vue │ ├── mixins │ └── getAvatar.js │ ├── pages │ ├── Contacts.vue │ ├── Edit.vue │ ├── Error404.vue │ ├── Index.vue │ ├── Messages.vue │ ├── SignUp.vue │ └── Validate.vue │ ├── router │ ├── index.js │ └── routes.js │ └── store │ ├── chat │ ├── actions.js │ ├── getters.js │ ├── index.js │ ├── mutations.js │ ├── state.js │ └── types.js │ ├── index.js │ ├── module-example │ ├── actions.js │ ├── getters.js │ ├── index.js │ ├── mutations.js │ └── state.js │ ├── store-flag.d.ts │ └── user │ ├── actions.js │ ├── getters.js │ ├── index.js │ ├── mutations.js │ ├── state.js │ └── types.js └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/README.md -------------------------------------------------------------------------------- /chapter-01/1_1/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /chapter-01/1_1/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_1/.editorconfig -------------------------------------------------------------------------------- /chapter-01/1_1/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_1/.eslintrc.js -------------------------------------------------------------------------------- /chapter-01/1_1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_1/.gitignore -------------------------------------------------------------------------------- /chapter-01/1_1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_1/README.md -------------------------------------------------------------------------------- /chapter-01/1_1/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_1/babel.config.js -------------------------------------------------------------------------------- /chapter-01/1_1/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_1/package-lock.json -------------------------------------------------------------------------------- /chapter-01/1_1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_1/package.json -------------------------------------------------------------------------------- /chapter-01/1_1/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_1/public/favicon.ico -------------------------------------------------------------------------------- /chapter-01/1_1/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_1/public/index.html -------------------------------------------------------------------------------- /chapter-01/1_1/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_1/src/App.vue -------------------------------------------------------------------------------- /chapter-01/1_1/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_1/src/assets/logo.png -------------------------------------------------------------------------------- /chapter-01/1_1/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_1/src/main.js -------------------------------------------------------------------------------- /chapter-01/1_1/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_1/src/style.css -------------------------------------------------------------------------------- /chapter-01/1_10/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /chapter-01/1_10/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_10/.editorconfig -------------------------------------------------------------------------------- /chapter-01/1_10/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_10/.eslintrc.js -------------------------------------------------------------------------------- /chapter-01/1_10/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_10/.gitignore -------------------------------------------------------------------------------- /chapter-01/1_10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_10/README.md -------------------------------------------------------------------------------- /chapter-01/1_10/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_10/babel.config.js -------------------------------------------------------------------------------- /chapter-01/1_10/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_10/package-lock.json -------------------------------------------------------------------------------- /chapter-01/1_10/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_10/package.json -------------------------------------------------------------------------------- /chapter-01/1_10/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_10/public/favicon.ico -------------------------------------------------------------------------------- /chapter-01/1_10/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_10/public/index.html -------------------------------------------------------------------------------- /chapter-01/1_10/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_10/src/App.vue -------------------------------------------------------------------------------- /chapter-01/1_10/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_10/src/assets/logo.png -------------------------------------------------------------------------------- /chapter-01/1_10/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_10/src/main.js -------------------------------------------------------------------------------- /chapter-01/1_10/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_10/src/style.css -------------------------------------------------------------------------------- /chapter-01/1_2/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /chapter-01/1_2/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_2/.editorconfig -------------------------------------------------------------------------------- /chapter-01/1_2/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_2/.eslintrc.js -------------------------------------------------------------------------------- /chapter-01/1_2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_2/.gitignore -------------------------------------------------------------------------------- /chapter-01/1_2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_2/README.md -------------------------------------------------------------------------------- /chapter-01/1_2/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_2/babel.config.js -------------------------------------------------------------------------------- /chapter-01/1_2/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_2/package-lock.json -------------------------------------------------------------------------------- /chapter-01/1_2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_2/package.json -------------------------------------------------------------------------------- /chapter-01/1_2/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_2/public/favicon.ico -------------------------------------------------------------------------------- /chapter-01/1_2/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_2/public/index.html -------------------------------------------------------------------------------- /chapter-01/1_2/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_2/src/App.vue -------------------------------------------------------------------------------- /chapter-01/1_2/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_2/src/assets/logo.png -------------------------------------------------------------------------------- /chapter-01/1_2/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_2/src/main.js -------------------------------------------------------------------------------- /chapter-01/1_2/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_2/src/style.css -------------------------------------------------------------------------------- /chapter-01/1_3/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /chapter-01/1_3/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_3/.editorconfig -------------------------------------------------------------------------------- /chapter-01/1_3/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_3/.eslintrc.js -------------------------------------------------------------------------------- /chapter-01/1_3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_3/.gitignore -------------------------------------------------------------------------------- /chapter-01/1_3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_3/README.md -------------------------------------------------------------------------------- /chapter-01/1_3/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_3/babel.config.js -------------------------------------------------------------------------------- /chapter-01/1_3/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_3/package-lock.json -------------------------------------------------------------------------------- /chapter-01/1_3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_3/package.json -------------------------------------------------------------------------------- /chapter-01/1_3/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_3/public/favicon.ico -------------------------------------------------------------------------------- /chapter-01/1_3/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_3/public/index.html -------------------------------------------------------------------------------- /chapter-01/1_3/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_3/src/App.vue -------------------------------------------------------------------------------- /chapter-01/1_3/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_3/src/assets/logo.png -------------------------------------------------------------------------------- /chapter-01/1_3/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_3/src/main.js -------------------------------------------------------------------------------- /chapter-01/1_3/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_3/src/style.css -------------------------------------------------------------------------------- /chapter-01/1_4/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /chapter-01/1_4/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_4/.editorconfig -------------------------------------------------------------------------------- /chapter-01/1_4/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_4/.eslintrc.js -------------------------------------------------------------------------------- /chapter-01/1_4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_4/.gitignore -------------------------------------------------------------------------------- /chapter-01/1_4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_4/README.md -------------------------------------------------------------------------------- /chapter-01/1_4/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_4/babel.config.js -------------------------------------------------------------------------------- /chapter-01/1_4/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_4/package-lock.json -------------------------------------------------------------------------------- /chapter-01/1_4/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_4/package.json -------------------------------------------------------------------------------- /chapter-01/1_4/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_4/public/favicon.ico -------------------------------------------------------------------------------- /chapter-01/1_4/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_4/public/index.html -------------------------------------------------------------------------------- /chapter-01/1_4/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_4/src/App.vue -------------------------------------------------------------------------------- /chapter-01/1_4/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_4/src/assets/logo.png -------------------------------------------------------------------------------- /chapter-01/1_4/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_4/src/main.js -------------------------------------------------------------------------------- /chapter-01/1_4/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_4/src/style.css -------------------------------------------------------------------------------- /chapter-01/1_5/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /chapter-01/1_5/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_5/.editorconfig -------------------------------------------------------------------------------- /chapter-01/1_5/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_5/.eslintrc.js -------------------------------------------------------------------------------- /chapter-01/1_5/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_5/.gitignore -------------------------------------------------------------------------------- /chapter-01/1_5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_5/README.md -------------------------------------------------------------------------------- /chapter-01/1_5/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_5/babel.config.js -------------------------------------------------------------------------------- /chapter-01/1_5/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_5/package-lock.json -------------------------------------------------------------------------------- /chapter-01/1_5/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_5/package.json -------------------------------------------------------------------------------- /chapter-01/1_5/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_5/public/favicon.ico -------------------------------------------------------------------------------- /chapter-01/1_5/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_5/public/index.html -------------------------------------------------------------------------------- /chapter-01/1_5/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_5/src/App.vue -------------------------------------------------------------------------------- /chapter-01/1_5/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_5/src/assets/logo.png -------------------------------------------------------------------------------- /chapter-01/1_5/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_5/src/main.js -------------------------------------------------------------------------------- /chapter-01/1_5/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_5/src/style.css -------------------------------------------------------------------------------- /chapter-01/1_6/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /chapter-01/1_6/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_6/.editorconfig -------------------------------------------------------------------------------- /chapter-01/1_6/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_6/.eslintrc.js -------------------------------------------------------------------------------- /chapter-01/1_6/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_6/.gitignore -------------------------------------------------------------------------------- /chapter-01/1_6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_6/README.md -------------------------------------------------------------------------------- /chapter-01/1_6/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_6/babel.config.js -------------------------------------------------------------------------------- /chapter-01/1_6/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_6/package-lock.json -------------------------------------------------------------------------------- /chapter-01/1_6/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_6/package.json -------------------------------------------------------------------------------- /chapter-01/1_6/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_6/public/favicon.ico -------------------------------------------------------------------------------- /chapter-01/1_6/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_6/public/index.html -------------------------------------------------------------------------------- /chapter-01/1_6/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_6/src/App.vue -------------------------------------------------------------------------------- /chapter-01/1_6/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_6/src/assets/logo.png -------------------------------------------------------------------------------- /chapter-01/1_6/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_6/src/main.js -------------------------------------------------------------------------------- /chapter-01/1_6/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_6/src/style.css -------------------------------------------------------------------------------- /chapter-01/1_7/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /chapter-01/1_7/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_7/.editorconfig -------------------------------------------------------------------------------- /chapter-01/1_7/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_7/.eslintrc.js -------------------------------------------------------------------------------- /chapter-01/1_7/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_7/.gitignore -------------------------------------------------------------------------------- /chapter-01/1_7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_7/README.md -------------------------------------------------------------------------------- /chapter-01/1_7/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_7/babel.config.js -------------------------------------------------------------------------------- /chapter-01/1_7/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_7/package-lock.json -------------------------------------------------------------------------------- /chapter-01/1_7/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_7/package.json -------------------------------------------------------------------------------- /chapter-01/1_7/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_7/public/favicon.ico -------------------------------------------------------------------------------- /chapter-01/1_7/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_7/public/index.html -------------------------------------------------------------------------------- /chapter-01/1_7/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_7/src/App.vue -------------------------------------------------------------------------------- /chapter-01/1_7/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_7/src/assets/logo.png -------------------------------------------------------------------------------- /chapter-01/1_7/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_7/src/main.js -------------------------------------------------------------------------------- /chapter-01/1_7/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_7/src/style.css -------------------------------------------------------------------------------- /chapter-01/1_8/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /chapter-01/1_8/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_8/.editorconfig -------------------------------------------------------------------------------- /chapter-01/1_8/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_8/.eslintrc.js -------------------------------------------------------------------------------- /chapter-01/1_8/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_8/.gitignore -------------------------------------------------------------------------------- /chapter-01/1_8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_8/README.md -------------------------------------------------------------------------------- /chapter-01/1_8/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_8/babel.config.js -------------------------------------------------------------------------------- /chapter-01/1_8/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_8/package-lock.json -------------------------------------------------------------------------------- /chapter-01/1_8/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_8/package.json -------------------------------------------------------------------------------- /chapter-01/1_8/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_8/public/favicon.ico -------------------------------------------------------------------------------- /chapter-01/1_8/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_8/public/index.html -------------------------------------------------------------------------------- /chapter-01/1_8/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_8/src/App.vue -------------------------------------------------------------------------------- /chapter-01/1_8/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_8/src/assets/logo.png -------------------------------------------------------------------------------- /chapter-01/1_8/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_8/src/main.js -------------------------------------------------------------------------------- /chapter-01/1_8/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_8/src/style.css -------------------------------------------------------------------------------- /chapter-01/1_9/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /chapter-01/1_9/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_9/.editorconfig -------------------------------------------------------------------------------- /chapter-01/1_9/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_9/.eslintrc.js -------------------------------------------------------------------------------- /chapter-01/1_9/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_9/.gitignore -------------------------------------------------------------------------------- /chapter-01/1_9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_9/README.md -------------------------------------------------------------------------------- /chapter-01/1_9/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_9/babel.config.js -------------------------------------------------------------------------------- /chapter-01/1_9/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_9/package-lock.json -------------------------------------------------------------------------------- /chapter-01/1_9/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_9/package.json -------------------------------------------------------------------------------- /chapter-01/1_9/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_9/public/favicon.ico -------------------------------------------------------------------------------- /chapter-01/1_9/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_9/public/index.html -------------------------------------------------------------------------------- /chapter-01/1_9/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_9/src/App.vue -------------------------------------------------------------------------------- /chapter-01/1_9/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_9/src/assets/logo.png -------------------------------------------------------------------------------- /chapter-01/1_9/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_9/src/main.js -------------------------------------------------------------------------------- /chapter-01/1_9/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/1_9/src/style.css -------------------------------------------------------------------------------- /chapter-01/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-01/README.md -------------------------------------------------------------------------------- /chapter-02/2_1/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /chapter-02/2_1/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_1/.editorconfig -------------------------------------------------------------------------------- /chapter-02/2_1/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_1/.eslintrc.js -------------------------------------------------------------------------------- /chapter-02/2_1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_1/.gitignore -------------------------------------------------------------------------------- /chapter-02/2_1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_1/README.md -------------------------------------------------------------------------------- /chapter-02/2_1/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_1/babel.config.js -------------------------------------------------------------------------------- /chapter-02/2_1/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_1/package-lock.json -------------------------------------------------------------------------------- /chapter-02/2_1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_1/package.json -------------------------------------------------------------------------------- /chapter-02/2_1/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_1/postcss.config.js -------------------------------------------------------------------------------- /chapter-02/2_1/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_1/public/favicon.ico -------------------------------------------------------------------------------- /chapter-02/2_1/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_1/public/index.html -------------------------------------------------------------------------------- /chapter-02/2_1/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_1/src/App.vue -------------------------------------------------------------------------------- /chapter-02/2_1/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_1/src/assets/logo.png -------------------------------------------------------------------------------- /chapter-02/2_1/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_1/src/main.js -------------------------------------------------------------------------------- /chapter-02/2_2/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /chapter-02/2_2/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_2/.editorconfig -------------------------------------------------------------------------------- /chapter-02/2_2/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_2/.eslintrc.js -------------------------------------------------------------------------------- /chapter-02/2_2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_2/.gitignore -------------------------------------------------------------------------------- /chapter-02/2_2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_2/README.md -------------------------------------------------------------------------------- /chapter-02/2_2/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_2/babel.config.js -------------------------------------------------------------------------------- /chapter-02/2_2/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_2/package-lock.json -------------------------------------------------------------------------------- /chapter-02/2_2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_2/package.json -------------------------------------------------------------------------------- /chapter-02/2_2/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_2/postcss.config.js -------------------------------------------------------------------------------- /chapter-02/2_2/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_2/public/favicon.ico -------------------------------------------------------------------------------- /chapter-02/2_2/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_2/public/index.html -------------------------------------------------------------------------------- /chapter-02/2_2/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_2/src/App.vue -------------------------------------------------------------------------------- /chapter-02/2_2/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_2/src/assets/logo.png -------------------------------------------------------------------------------- /chapter-02/2_2/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_2/src/main.js -------------------------------------------------------------------------------- /chapter-02/2_3/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /chapter-02/2_3/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_3/.editorconfig -------------------------------------------------------------------------------- /chapter-02/2_3/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_3/.eslintrc.js -------------------------------------------------------------------------------- /chapter-02/2_3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_3/.gitignore -------------------------------------------------------------------------------- /chapter-02/2_3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_3/README.md -------------------------------------------------------------------------------- /chapter-02/2_3/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_3/babel.config.js -------------------------------------------------------------------------------- /chapter-02/2_3/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_3/package-lock.json -------------------------------------------------------------------------------- /chapter-02/2_3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_3/package.json -------------------------------------------------------------------------------- /chapter-02/2_3/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_3/postcss.config.js -------------------------------------------------------------------------------- /chapter-02/2_3/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_3/public/favicon.ico -------------------------------------------------------------------------------- /chapter-02/2_3/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_3/public/index.html -------------------------------------------------------------------------------- /chapter-02/2_3/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_3/src/App.vue -------------------------------------------------------------------------------- /chapter-02/2_3/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_3/src/assets/logo.png -------------------------------------------------------------------------------- /chapter-02/2_3/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_3/src/main.js -------------------------------------------------------------------------------- /chapter-02/2_4/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /chapter-02/2_4/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_4/.editorconfig -------------------------------------------------------------------------------- /chapter-02/2_4/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_4/.eslintrc.js -------------------------------------------------------------------------------- /chapter-02/2_4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_4/.gitignore -------------------------------------------------------------------------------- /chapter-02/2_4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_4/README.md -------------------------------------------------------------------------------- /chapter-02/2_4/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_4/babel.config.js -------------------------------------------------------------------------------- /chapter-02/2_4/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_4/package-lock.json -------------------------------------------------------------------------------- /chapter-02/2_4/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_4/package.json -------------------------------------------------------------------------------- /chapter-02/2_4/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_4/postcss.config.js -------------------------------------------------------------------------------- /chapter-02/2_4/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_4/public/favicon.ico -------------------------------------------------------------------------------- /chapter-02/2_4/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_4/public/index.html -------------------------------------------------------------------------------- /chapter-02/2_4/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_4/src/App.vue -------------------------------------------------------------------------------- /chapter-02/2_4/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_4/src/assets/logo.png -------------------------------------------------------------------------------- /chapter-02/2_4/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_4/src/main.js -------------------------------------------------------------------------------- /chapter-02/2_5/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /chapter-02/2_5/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_5/.editorconfig -------------------------------------------------------------------------------- /chapter-02/2_5/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_5/.eslintrc.js -------------------------------------------------------------------------------- /chapter-02/2_5/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_5/.gitignore -------------------------------------------------------------------------------- /chapter-02/2_5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_5/README.md -------------------------------------------------------------------------------- /chapter-02/2_5/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_5/babel.config.js -------------------------------------------------------------------------------- /chapter-02/2_5/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_5/package-lock.json -------------------------------------------------------------------------------- /chapter-02/2_5/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_5/package.json -------------------------------------------------------------------------------- /chapter-02/2_5/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_5/postcss.config.js -------------------------------------------------------------------------------- /chapter-02/2_5/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_5/public/favicon.ico -------------------------------------------------------------------------------- /chapter-02/2_5/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_5/public/index.html -------------------------------------------------------------------------------- /chapter-02/2_5/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_5/src/App.vue -------------------------------------------------------------------------------- /chapter-02/2_5/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_5/src/assets/logo.png -------------------------------------------------------------------------------- /chapter-02/2_5/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_5/src/main.js -------------------------------------------------------------------------------- /chapter-02/2_6/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /chapter-02/2_6/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_6/.editorconfig -------------------------------------------------------------------------------- /chapter-02/2_6/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_6/.eslintrc.js -------------------------------------------------------------------------------- /chapter-02/2_6/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_6/.gitignore -------------------------------------------------------------------------------- /chapter-02/2_6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_6/README.md -------------------------------------------------------------------------------- /chapter-02/2_6/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_6/babel.config.js -------------------------------------------------------------------------------- /chapter-02/2_6/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_6/package-lock.json -------------------------------------------------------------------------------- /chapter-02/2_6/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_6/package.json -------------------------------------------------------------------------------- /chapter-02/2_6/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_6/postcss.config.js -------------------------------------------------------------------------------- /chapter-02/2_6/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_6/public/favicon.ico -------------------------------------------------------------------------------- /chapter-02/2_6/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_6/public/index.html -------------------------------------------------------------------------------- /chapter-02/2_6/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_6/src/App.vue -------------------------------------------------------------------------------- /chapter-02/2_6/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_6/src/assets/logo.png -------------------------------------------------------------------------------- /chapter-02/2_6/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_6/src/main.js -------------------------------------------------------------------------------- /chapter-02/2_7/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /chapter-02/2_7/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_7/.editorconfig -------------------------------------------------------------------------------- /chapter-02/2_7/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_7/.eslintrc.js -------------------------------------------------------------------------------- /chapter-02/2_7/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_7/.gitignore -------------------------------------------------------------------------------- /chapter-02/2_7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_7/README.md -------------------------------------------------------------------------------- /chapter-02/2_7/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_7/babel.config.js -------------------------------------------------------------------------------- /chapter-02/2_7/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_7/package-lock.json -------------------------------------------------------------------------------- /chapter-02/2_7/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_7/package.json -------------------------------------------------------------------------------- /chapter-02/2_7/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_7/postcss.config.js -------------------------------------------------------------------------------- /chapter-02/2_7/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_7/public/favicon.ico -------------------------------------------------------------------------------- /chapter-02/2_7/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_7/public/index.html -------------------------------------------------------------------------------- /chapter-02/2_7/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_7/src/App.vue -------------------------------------------------------------------------------- /chapter-02/2_7/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_7/src/assets/logo.png -------------------------------------------------------------------------------- /chapter-02/2_7/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_7/src/main.js -------------------------------------------------------------------------------- /chapter-02/2_8/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /chapter-02/2_8/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_8/.editorconfig -------------------------------------------------------------------------------- /chapter-02/2_8/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_8/.eslintrc.js -------------------------------------------------------------------------------- /chapter-02/2_8/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_8/.gitignore -------------------------------------------------------------------------------- /chapter-02/2_8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_8/README.md -------------------------------------------------------------------------------- /chapter-02/2_8/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_8/babel.config.js -------------------------------------------------------------------------------- /chapter-02/2_8/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_8/package-lock.json -------------------------------------------------------------------------------- /chapter-02/2_8/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_8/package.json -------------------------------------------------------------------------------- /chapter-02/2_8/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_8/postcss.config.js -------------------------------------------------------------------------------- /chapter-02/2_8/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_8/public/favicon.ico -------------------------------------------------------------------------------- /chapter-02/2_8/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_8/public/index.html -------------------------------------------------------------------------------- /chapter-02/2_8/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_8/src/App.vue -------------------------------------------------------------------------------- /chapter-02/2_8/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_8/src/assets/logo.png -------------------------------------------------------------------------------- /chapter-02/2_8/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_8/src/main.js -------------------------------------------------------------------------------- /chapter-02/2_9/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /chapter-02/2_9/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_9/.editorconfig -------------------------------------------------------------------------------- /chapter-02/2_9/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_9/.eslintrc.js -------------------------------------------------------------------------------- /chapter-02/2_9/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_9/.gitignore -------------------------------------------------------------------------------- /chapter-02/2_9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_9/README.md -------------------------------------------------------------------------------- /chapter-02/2_9/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_9/babel.config.js -------------------------------------------------------------------------------- /chapter-02/2_9/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_9/package-lock.json -------------------------------------------------------------------------------- /chapter-02/2_9/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_9/package.json -------------------------------------------------------------------------------- /chapter-02/2_9/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_9/postcss.config.js -------------------------------------------------------------------------------- /chapter-02/2_9/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_9/public/favicon.ico -------------------------------------------------------------------------------- /chapter-02/2_9/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_9/public/index.html -------------------------------------------------------------------------------- /chapter-02/2_9/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_9/src/App.vue -------------------------------------------------------------------------------- /chapter-02/2_9/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_9/src/assets/logo.png -------------------------------------------------------------------------------- /chapter-02/2_9/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/2_9/src/main.js -------------------------------------------------------------------------------- /chapter-02/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-02/README.md -------------------------------------------------------------------------------- /chapter-03/3_1/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_1/.editorconfig -------------------------------------------------------------------------------- /chapter-03/3_1/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_1/.eslintignore -------------------------------------------------------------------------------- /chapter-03/3_1/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_1/.eslintrc.js -------------------------------------------------------------------------------- /chapter-03/3_1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_1/.gitignore -------------------------------------------------------------------------------- /chapter-03/3_1/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_1/.postcssrc.js -------------------------------------------------------------------------------- /chapter-03/3_1/.stylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_1/.stylintrc -------------------------------------------------------------------------------- /chapter-03/3_1/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_1/.vscode/settings.json -------------------------------------------------------------------------------- /chapter-03/3_1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_1/README.md -------------------------------------------------------------------------------- /chapter-03/3_1/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_1/babel.config.js -------------------------------------------------------------------------------- /chapter-03/3_1/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_1/jsconfig.json -------------------------------------------------------------------------------- /chapter-03/3_1/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_1/package-lock.json -------------------------------------------------------------------------------- /chapter-03/3_1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_1/package.json -------------------------------------------------------------------------------- /chapter-03/3_1/quasar.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_1/quasar.conf.js -------------------------------------------------------------------------------- /chapter-03/3_1/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_1/src/App.vue -------------------------------------------------------------------------------- /chapter-03/3_1/src/assets/sad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_1/src/assets/sad.svg -------------------------------------------------------------------------------- /chapter-03/3_1/src/boot/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter-03/3_1/src/boot/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_1/src/boot/axios.js -------------------------------------------------------------------------------- /chapter-03/3_1/src/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter-03/3_1/src/css/app.styl: -------------------------------------------------------------------------------- 1 | // app global css in Stylus form 2 | -------------------------------------------------------------------------------- /chapter-03/3_1/src/pages/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_1/src/pages/Index.vue -------------------------------------------------------------------------------- /chapter-03/3_1/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_1/src/router/index.js -------------------------------------------------------------------------------- /chapter-03/3_1/src/router/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_1/src/router/routes.js -------------------------------------------------------------------------------- /chapter-03/3_1/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_1/src/store/index.js -------------------------------------------------------------------------------- /chapter-03/3_1/src/store/module-example/getters.js: -------------------------------------------------------------------------------- 1 | export function someGetter(/* state */) { 2 | } 3 | -------------------------------------------------------------------------------- /chapter-03/3_2/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_2/.editorconfig -------------------------------------------------------------------------------- /chapter-03/3_2/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_2/.eslintignore -------------------------------------------------------------------------------- /chapter-03/3_2/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_2/.eslintrc.js -------------------------------------------------------------------------------- /chapter-03/3_2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_2/.gitignore -------------------------------------------------------------------------------- /chapter-03/3_2/.graphqlconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_2/.graphqlconfig.yml -------------------------------------------------------------------------------- /chapter-03/3_2/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_2/.postcssrc.js -------------------------------------------------------------------------------- /chapter-03/3_2/.stylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_2/.stylintrc -------------------------------------------------------------------------------- /chapter-03/3_2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_2/README.md -------------------------------------------------------------------------------- /chapter-03/3_2/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_2/babel.config.js -------------------------------------------------------------------------------- /chapter-03/3_2/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_2/jsconfig.json -------------------------------------------------------------------------------- /chapter-03/3_2/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_2/package-lock.json -------------------------------------------------------------------------------- /chapter-03/3_2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_2/package.json -------------------------------------------------------------------------------- /chapter-03/3_2/quasar.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_2/quasar.conf.js -------------------------------------------------------------------------------- /chapter-03/3_2/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_2/src/App.vue -------------------------------------------------------------------------------- /chapter-03/3_2/src/assets/sad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_2/src/assets/sad.svg -------------------------------------------------------------------------------- /chapter-03/3_2/src/boot/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter-03/3_2/src/boot/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_2/src/boot/axios.js -------------------------------------------------------------------------------- /chapter-03/3_2/src/chatApi.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_2/src/chatApi.graphql -------------------------------------------------------------------------------- /chapter-03/3_2/src/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter-03/3_2/src/css/app.styl: -------------------------------------------------------------------------------- 1 | // app global css in Stylus form 2 | -------------------------------------------------------------------------------- /chapter-03/3_2/src/pages/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_2/src/pages/Index.vue -------------------------------------------------------------------------------- /chapter-03/3_2/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_2/src/router/index.js -------------------------------------------------------------------------------- /chapter-03/3_2/src/router/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_2/src/router/routes.js -------------------------------------------------------------------------------- /chapter-03/3_2/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_2/src/store/index.js -------------------------------------------------------------------------------- /chapter-03/3_2/src/store/module-example/getters.js: -------------------------------------------------------------------------------- 1 | export function someGetter(/* state */) { 2 | } 3 | -------------------------------------------------------------------------------- /chapter-03/3_3/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_3/.editorconfig -------------------------------------------------------------------------------- /chapter-03/3_3/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_3/.eslintignore -------------------------------------------------------------------------------- /chapter-03/3_3/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_3/.eslintrc.js -------------------------------------------------------------------------------- /chapter-03/3_3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_3/.gitignore -------------------------------------------------------------------------------- /chapter-03/3_3/.graphqlconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_3/.graphqlconfig.yml -------------------------------------------------------------------------------- /chapter-03/3_3/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_3/.postcssrc.js -------------------------------------------------------------------------------- /chapter-03/3_3/.stylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_3/.stylintrc -------------------------------------------------------------------------------- /chapter-03/3_3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_3/README.md -------------------------------------------------------------------------------- /chapter-03/3_3/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_3/babel.config.js -------------------------------------------------------------------------------- /chapter-03/3_3/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_3/jsconfig.json -------------------------------------------------------------------------------- /chapter-03/3_3/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_3/package-lock.json -------------------------------------------------------------------------------- /chapter-03/3_3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_3/package.json -------------------------------------------------------------------------------- /chapter-03/3_3/quasar.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_3/quasar.conf.js -------------------------------------------------------------------------------- /chapter-03/3_3/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_3/src/App.vue -------------------------------------------------------------------------------- /chapter-03/3_3/src/assets/sad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_3/src/assets/sad.svg -------------------------------------------------------------------------------- /chapter-03/3_3/src/boot/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter-03/3_3/src/boot/amplify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_3/src/boot/amplify.js -------------------------------------------------------------------------------- /chapter-03/3_3/src/boot/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_3/src/boot/axios.js -------------------------------------------------------------------------------- /chapter-03/3_3/src/chatApi.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_3/src/chatApi.graphql -------------------------------------------------------------------------------- /chapter-03/3_3/src/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter-03/3_3/src/css/app.styl: -------------------------------------------------------------------------------- 1 | // app global css in Stylus form 2 | -------------------------------------------------------------------------------- /chapter-03/3_3/src/pages/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_3/src/pages/Index.vue -------------------------------------------------------------------------------- /chapter-03/3_3/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_3/src/router/index.js -------------------------------------------------------------------------------- /chapter-03/3_3/src/router/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_3/src/router/routes.js -------------------------------------------------------------------------------- /chapter-03/3_3/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_3/src/store/index.js -------------------------------------------------------------------------------- /chapter-03/3_3/src/store/module-example/getters.js: -------------------------------------------------------------------------------- 1 | export function someGetter(/* state */) { 2 | } 3 | -------------------------------------------------------------------------------- /chapter-03/3_4/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_4/.editorconfig -------------------------------------------------------------------------------- /chapter-03/3_4/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_4/.eslintignore -------------------------------------------------------------------------------- /chapter-03/3_4/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_4/.eslintrc.js -------------------------------------------------------------------------------- /chapter-03/3_4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_4/.gitignore -------------------------------------------------------------------------------- /chapter-03/3_4/.graphqlconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_4/.graphqlconfig.yml -------------------------------------------------------------------------------- /chapter-03/3_4/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_4/.postcssrc.js -------------------------------------------------------------------------------- /chapter-03/3_4/.stylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_4/.stylintrc -------------------------------------------------------------------------------- /chapter-03/3_4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_4/README.md -------------------------------------------------------------------------------- /chapter-03/3_4/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_4/babel.config.js -------------------------------------------------------------------------------- /chapter-03/3_4/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_4/jsconfig.json -------------------------------------------------------------------------------- /chapter-03/3_4/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_4/package-lock.json -------------------------------------------------------------------------------- /chapter-03/3_4/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_4/package.json -------------------------------------------------------------------------------- /chapter-03/3_4/quasar.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_4/quasar.conf.js -------------------------------------------------------------------------------- /chapter-03/3_4/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_4/src/App.vue -------------------------------------------------------------------------------- /chapter-03/3_4/src/assets/sad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_4/src/assets/sad.svg -------------------------------------------------------------------------------- /chapter-03/3_4/src/boot/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter-03/3_4/src/boot/amplify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_4/src/boot/amplify.js -------------------------------------------------------------------------------- /chapter-03/3_4/src/boot/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_4/src/boot/axios.js -------------------------------------------------------------------------------- /chapter-03/3_4/src/chatApi.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_4/src/chatApi.graphql -------------------------------------------------------------------------------- /chapter-03/3_4/src/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter-03/3_4/src/css/app.styl: -------------------------------------------------------------------------------- 1 | // app global css in Stylus form 2 | -------------------------------------------------------------------------------- /chapter-03/3_4/src/driver/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_4/src/driver/auth.js -------------------------------------------------------------------------------- /chapter-03/3_4/src/driver/bucket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_4/src/driver/bucket.js -------------------------------------------------------------------------------- /chapter-03/3_4/src/pages/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_4/src/pages/Index.vue -------------------------------------------------------------------------------- /chapter-03/3_4/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_4/src/router/index.js -------------------------------------------------------------------------------- /chapter-03/3_4/src/router/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_4/src/router/routes.js -------------------------------------------------------------------------------- /chapter-03/3_4/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/3_4/src/store/index.js -------------------------------------------------------------------------------- /chapter-03/3_4/src/store/module-example/getters.js: -------------------------------------------------------------------------------- 1 | export function someGetter(/* state */) { 2 | } 3 | -------------------------------------------------------------------------------- /chapter-03/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-03/README.md -------------------------------------------------------------------------------- /chapter-04/4_1/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_1/.editorconfig -------------------------------------------------------------------------------- /chapter-04/4_1/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_1/.eslintignore -------------------------------------------------------------------------------- /chapter-04/4_1/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_1/.eslintrc.js -------------------------------------------------------------------------------- /chapter-04/4_1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_1/.gitignore -------------------------------------------------------------------------------- /chapter-04/4_1/.graphqlconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_1/.graphqlconfig.yml -------------------------------------------------------------------------------- /chapter-04/4_1/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_1/.postcssrc.js -------------------------------------------------------------------------------- /chapter-04/4_1/.stylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_1/.stylintrc -------------------------------------------------------------------------------- /chapter-04/4_1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_1/README.md -------------------------------------------------------------------------------- /chapter-04/4_1/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_1/babel.config.js -------------------------------------------------------------------------------- /chapter-04/4_1/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_1/jsconfig.json -------------------------------------------------------------------------------- /chapter-04/4_1/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_1/package-lock.json -------------------------------------------------------------------------------- /chapter-04/4_1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_1/package.json -------------------------------------------------------------------------------- /chapter-04/4_1/quasar.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_1/quasar.conf.js -------------------------------------------------------------------------------- /chapter-04/4_1/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_1/src/App.vue -------------------------------------------------------------------------------- /chapter-04/4_1/src/assets/sad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_1/src/assets/sad.svg -------------------------------------------------------------------------------- /chapter-04/4_1/src/boot/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter-04/4_1/src/boot/amplify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_1/src/boot/amplify.js -------------------------------------------------------------------------------- /chapter-04/4_1/src/boot/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_1/src/boot/axios.js -------------------------------------------------------------------------------- /chapter-04/4_1/src/chatApi.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_1/src/chatApi.graphql -------------------------------------------------------------------------------- /chapter-04/4_1/src/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter-04/4_1/src/css/app.styl: -------------------------------------------------------------------------------- 1 | // app global css in Stylus form 2 | -------------------------------------------------------------------------------- /chapter-04/4_1/src/driver/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_1/src/driver/auth.js -------------------------------------------------------------------------------- /chapter-04/4_1/src/driver/bucket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_1/src/driver/bucket.js -------------------------------------------------------------------------------- /chapter-04/4_1/src/pages/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_1/src/pages/Index.vue -------------------------------------------------------------------------------- /chapter-04/4_1/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_1/src/router/index.js -------------------------------------------------------------------------------- /chapter-04/4_1/src/router/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_1/src/router/routes.js -------------------------------------------------------------------------------- /chapter-04/4_1/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_1/src/store/index.js -------------------------------------------------------------------------------- /chapter-04/4_1/src/store/module-example/getters.js: -------------------------------------------------------------------------------- 1 | export function someGetter(/* state */) { 2 | } 3 | -------------------------------------------------------------------------------- /chapter-04/4_2/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_2/.editorconfig -------------------------------------------------------------------------------- /chapter-04/4_2/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_2/.eslintignore -------------------------------------------------------------------------------- /chapter-04/4_2/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_2/.eslintrc.js -------------------------------------------------------------------------------- /chapter-04/4_2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_2/.gitignore -------------------------------------------------------------------------------- /chapter-04/4_2/.graphqlconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_2/.graphqlconfig.yml -------------------------------------------------------------------------------- /chapter-04/4_2/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_2/.postcssrc.js -------------------------------------------------------------------------------- /chapter-04/4_2/.stylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_2/.stylintrc -------------------------------------------------------------------------------- /chapter-04/4_2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_2/README.md -------------------------------------------------------------------------------- /chapter-04/4_2/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_2/babel.config.js -------------------------------------------------------------------------------- /chapter-04/4_2/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_2/jsconfig.json -------------------------------------------------------------------------------- /chapter-04/4_2/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_2/package-lock.json -------------------------------------------------------------------------------- /chapter-04/4_2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_2/package.json -------------------------------------------------------------------------------- /chapter-04/4_2/quasar.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_2/quasar.conf.js -------------------------------------------------------------------------------- /chapter-04/4_2/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_2/src/App.vue -------------------------------------------------------------------------------- /chapter-04/4_2/src/assets/sad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_2/src/assets/sad.svg -------------------------------------------------------------------------------- /chapter-04/4_2/src/boot/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter-04/4_2/src/boot/amplify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_2/src/boot/amplify.js -------------------------------------------------------------------------------- /chapter-04/4_2/src/boot/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_2/src/boot/axios.js -------------------------------------------------------------------------------- /chapter-04/4_2/src/chatApi.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_2/src/chatApi.graphql -------------------------------------------------------------------------------- /chapter-04/4_2/src/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter-04/4_2/src/css/app.styl: -------------------------------------------------------------------------------- 1 | // app global css in Stylus form 2 | -------------------------------------------------------------------------------- /chapter-04/4_2/src/driver/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_2/src/driver/auth.js -------------------------------------------------------------------------------- /chapter-04/4_2/src/driver/bucket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_2/src/driver/bucket.js -------------------------------------------------------------------------------- /chapter-04/4_2/src/layouts/Base.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_2/src/layouts/Base.vue -------------------------------------------------------------------------------- /chapter-04/4_2/src/layouts/Chat.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_2/src/layouts/Chat.vue -------------------------------------------------------------------------------- /chapter-04/4_2/src/pages/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_2/src/pages/Index.vue -------------------------------------------------------------------------------- /chapter-04/4_2/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_2/src/router/index.js -------------------------------------------------------------------------------- /chapter-04/4_2/src/router/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_2/src/router/routes.js -------------------------------------------------------------------------------- /chapter-04/4_2/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/4_2/src/store/index.js -------------------------------------------------------------------------------- /chapter-04/4_2/src/store/module-example/getters.js: -------------------------------------------------------------------------------- 1 | export function someGetter(/* state */) { 2 | } 3 | -------------------------------------------------------------------------------- /chapter-04/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-04/README.md -------------------------------------------------------------------------------- /chapter-05/5_1/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_1/.editorconfig -------------------------------------------------------------------------------- /chapter-05/5_1/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_1/.eslintignore -------------------------------------------------------------------------------- /chapter-05/5_1/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_1/.eslintrc.js -------------------------------------------------------------------------------- /chapter-05/5_1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_1/.gitignore -------------------------------------------------------------------------------- /chapter-05/5_1/.graphqlconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_1/.graphqlconfig.yml -------------------------------------------------------------------------------- /chapter-05/5_1/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_1/.postcssrc.js -------------------------------------------------------------------------------- /chapter-05/5_1/.stylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_1/.stylintrc -------------------------------------------------------------------------------- /chapter-05/5_1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_1/README.md -------------------------------------------------------------------------------- /chapter-05/5_1/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_1/babel.config.js -------------------------------------------------------------------------------- /chapter-05/5_1/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_1/jsconfig.json -------------------------------------------------------------------------------- /chapter-05/5_1/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_1/package-lock.json -------------------------------------------------------------------------------- /chapter-05/5_1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_1/package.json -------------------------------------------------------------------------------- /chapter-05/5_1/quasar.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_1/quasar.conf.js -------------------------------------------------------------------------------- /chapter-05/5_1/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_1/src/App.vue -------------------------------------------------------------------------------- /chapter-05/5_1/src/assets/sad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_1/src/assets/sad.svg -------------------------------------------------------------------------------- /chapter-05/5_1/src/boot/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter-05/5_1/src/boot/amplify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_1/src/boot/amplify.js -------------------------------------------------------------------------------- /chapter-05/5_1/src/boot/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_1/src/boot/axios.js -------------------------------------------------------------------------------- /chapter-05/5_1/src/chatApi.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_1/src/chatApi.graphql -------------------------------------------------------------------------------- /chapter-05/5_1/src/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter-05/5_1/src/css/app.styl: -------------------------------------------------------------------------------- 1 | // app global css in Stylus form 2 | -------------------------------------------------------------------------------- /chapter-05/5_1/src/driver/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_1/src/driver/auth.js -------------------------------------------------------------------------------- /chapter-05/5_1/src/driver/bucket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_1/src/driver/bucket.js -------------------------------------------------------------------------------- /chapter-05/5_1/src/layouts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter-05/5_1/src/pages/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter-05/5_1/src/pages/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_1/src/pages/Index.vue -------------------------------------------------------------------------------- /chapter-05/5_1/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_1/src/router/index.js -------------------------------------------------------------------------------- /chapter-05/5_1/src/router/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_1/src/router/routes.js -------------------------------------------------------------------------------- /chapter-05/5_1/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_1/src/store/index.js -------------------------------------------------------------------------------- /chapter-05/5_1/src/store/module-example/getters.js: -------------------------------------------------------------------------------- 1 | export function someGetter(/* state */) { 2 | } 3 | -------------------------------------------------------------------------------- /chapter-05/5_2/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_2/.editorconfig -------------------------------------------------------------------------------- /chapter-05/5_2/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_2/.eslintignore -------------------------------------------------------------------------------- /chapter-05/5_2/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_2/.eslintrc.js -------------------------------------------------------------------------------- /chapter-05/5_2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_2/.gitignore -------------------------------------------------------------------------------- /chapter-05/5_2/.graphqlconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_2/.graphqlconfig.yml -------------------------------------------------------------------------------- /chapter-05/5_2/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_2/.postcssrc.js -------------------------------------------------------------------------------- /chapter-05/5_2/.stylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_2/.stylintrc -------------------------------------------------------------------------------- /chapter-05/5_2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_2/README.md -------------------------------------------------------------------------------- /chapter-05/5_2/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_2/babel.config.js -------------------------------------------------------------------------------- /chapter-05/5_2/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_2/jsconfig.json -------------------------------------------------------------------------------- /chapter-05/5_2/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_2/package-lock.json -------------------------------------------------------------------------------- /chapter-05/5_2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_2/package.json -------------------------------------------------------------------------------- /chapter-05/5_2/quasar.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_2/quasar.conf.js -------------------------------------------------------------------------------- /chapter-05/5_2/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_2/src/App.vue -------------------------------------------------------------------------------- /chapter-05/5_2/src/assets/sad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_2/src/assets/sad.svg -------------------------------------------------------------------------------- /chapter-05/5_2/src/boot/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter-05/5_2/src/boot/amplify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_2/src/boot/amplify.js -------------------------------------------------------------------------------- /chapter-05/5_2/src/boot/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_2/src/boot/axios.js -------------------------------------------------------------------------------- /chapter-05/5_2/src/chatApi.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_2/src/chatApi.graphql -------------------------------------------------------------------------------- /chapter-05/5_2/src/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter-05/5_2/src/css/app.styl: -------------------------------------------------------------------------------- 1 | // app global css in Stylus form 2 | -------------------------------------------------------------------------------- /chapter-05/5_2/src/driver/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_2/src/driver/auth.js -------------------------------------------------------------------------------- /chapter-05/5_2/src/driver/bucket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_2/src/driver/bucket.js -------------------------------------------------------------------------------- /chapter-05/5_2/src/layouts/Base.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_2/src/layouts/Base.vue -------------------------------------------------------------------------------- /chapter-05/5_2/src/layouts/Chat.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_2/src/layouts/Chat.vue -------------------------------------------------------------------------------- /chapter-05/5_2/src/pages/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_2/src/pages/Edit.vue -------------------------------------------------------------------------------- /chapter-05/5_2/src/pages/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_2/src/pages/Index.vue -------------------------------------------------------------------------------- /chapter-05/5_2/src/pages/SignUp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_2/src/pages/SignUp.vue -------------------------------------------------------------------------------- /chapter-05/5_2/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_2/src/router/index.js -------------------------------------------------------------------------------- /chapter-05/5_2/src/router/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_2/src/router/routes.js -------------------------------------------------------------------------------- /chapter-05/5_2/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/5_2/src/store/index.js -------------------------------------------------------------------------------- /chapter-05/5_2/src/store/module-example/getters.js: -------------------------------------------------------------------------------- 1 | export function someGetter(/* state */) { 2 | } 3 | -------------------------------------------------------------------------------- /chapter-05/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-05/README.md -------------------------------------------------------------------------------- /chapter-06/6_1/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_1/.editorconfig -------------------------------------------------------------------------------- /chapter-06/6_1/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_1/.eslintignore -------------------------------------------------------------------------------- /chapter-06/6_1/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_1/.eslintrc.js -------------------------------------------------------------------------------- /chapter-06/6_1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_1/.gitignore -------------------------------------------------------------------------------- /chapter-06/6_1/.graphqlconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_1/.graphqlconfig.yml -------------------------------------------------------------------------------- /chapter-06/6_1/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_1/.postcssrc.js -------------------------------------------------------------------------------- /chapter-06/6_1/.stylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_1/.stylintrc -------------------------------------------------------------------------------- /chapter-06/6_1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_1/README.md -------------------------------------------------------------------------------- /chapter-06/6_1/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_1/babel.config.js -------------------------------------------------------------------------------- /chapter-06/6_1/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_1/jsconfig.json -------------------------------------------------------------------------------- /chapter-06/6_1/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_1/package-lock.json -------------------------------------------------------------------------------- /chapter-06/6_1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_1/package.json -------------------------------------------------------------------------------- /chapter-06/6_1/quasar.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_1/quasar.conf.js -------------------------------------------------------------------------------- /chapter-06/6_1/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_1/src/App.vue -------------------------------------------------------------------------------- /chapter-06/6_1/src/assets/sad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_1/src/assets/sad.svg -------------------------------------------------------------------------------- /chapter-06/6_1/src/boot/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter-06/6_1/src/boot/amplify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_1/src/boot/amplify.js -------------------------------------------------------------------------------- /chapter-06/6_1/src/boot/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_1/src/boot/axios.js -------------------------------------------------------------------------------- /chapter-06/6_1/src/chatApi.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_1/src/chatApi.graphql -------------------------------------------------------------------------------- /chapter-06/6_1/src/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter-06/6_1/src/css/app.styl: -------------------------------------------------------------------------------- 1 | // app global css in Stylus form 2 | -------------------------------------------------------------------------------- /chapter-06/6_1/src/driver/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_1/src/driver/auth.js -------------------------------------------------------------------------------- /chapter-06/6_1/src/driver/bucket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_1/src/driver/bucket.js -------------------------------------------------------------------------------- /chapter-06/6_1/src/layouts/Base.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_1/src/layouts/Base.vue -------------------------------------------------------------------------------- /chapter-06/6_1/src/layouts/Chat.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_1/src/layouts/Chat.vue -------------------------------------------------------------------------------- /chapter-06/6_1/src/pages/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_1/src/pages/Edit.vue -------------------------------------------------------------------------------- /chapter-06/6_1/src/pages/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_1/src/pages/Index.vue -------------------------------------------------------------------------------- /chapter-06/6_1/src/pages/SignUp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_1/src/pages/SignUp.vue -------------------------------------------------------------------------------- /chapter-06/6_1/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_1/src/router/index.js -------------------------------------------------------------------------------- /chapter-06/6_1/src/router/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_1/src/router/routes.js -------------------------------------------------------------------------------- /chapter-06/6_1/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_1/src/store/index.js -------------------------------------------------------------------------------- /chapter-06/6_1/src/store/module-example/getters.js: -------------------------------------------------------------------------------- 1 | export function someGetter(/* state */) { 2 | } 3 | -------------------------------------------------------------------------------- /chapter-06/6_2/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_2/.editorconfig -------------------------------------------------------------------------------- /chapter-06/6_2/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_2/.eslintignore -------------------------------------------------------------------------------- /chapter-06/6_2/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_2/.eslintrc.js -------------------------------------------------------------------------------- /chapter-06/6_2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_2/.gitignore -------------------------------------------------------------------------------- /chapter-06/6_2/.graphqlconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_2/.graphqlconfig.yml -------------------------------------------------------------------------------- /chapter-06/6_2/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_2/.postcssrc.js -------------------------------------------------------------------------------- /chapter-06/6_2/.stylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_2/.stylintrc -------------------------------------------------------------------------------- /chapter-06/6_2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_2/README.md -------------------------------------------------------------------------------- /chapter-06/6_2/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_2/babel.config.js -------------------------------------------------------------------------------- /chapter-06/6_2/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_2/jsconfig.json -------------------------------------------------------------------------------- /chapter-06/6_2/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_2/package-lock.json -------------------------------------------------------------------------------- /chapter-06/6_2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_2/package.json -------------------------------------------------------------------------------- /chapter-06/6_2/quasar.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_2/quasar.conf.js -------------------------------------------------------------------------------- /chapter-06/6_2/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_2/src/App.vue -------------------------------------------------------------------------------- /chapter-06/6_2/src/assets/sad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_2/src/assets/sad.svg -------------------------------------------------------------------------------- /chapter-06/6_2/src/boot/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter-06/6_2/src/boot/amplify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_2/src/boot/amplify.js -------------------------------------------------------------------------------- /chapter-06/6_2/src/boot/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_2/src/boot/axios.js -------------------------------------------------------------------------------- /chapter-06/6_2/src/chatApi.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_2/src/chatApi.graphql -------------------------------------------------------------------------------- /chapter-06/6_2/src/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter-06/6_2/src/css/app.styl: -------------------------------------------------------------------------------- 1 | // app global css in Stylus form 2 | -------------------------------------------------------------------------------- /chapter-06/6_2/src/driver/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_2/src/driver/auth.js -------------------------------------------------------------------------------- /chapter-06/6_2/src/driver/bucket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_2/src/driver/bucket.js -------------------------------------------------------------------------------- /chapter-06/6_2/src/layouts/Base.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_2/src/layouts/Base.vue -------------------------------------------------------------------------------- /chapter-06/6_2/src/layouts/Chat.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_2/src/layouts/Chat.vue -------------------------------------------------------------------------------- /chapter-06/6_2/src/pages/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_2/src/pages/Edit.vue -------------------------------------------------------------------------------- /chapter-06/6_2/src/pages/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_2/src/pages/Index.vue -------------------------------------------------------------------------------- /chapter-06/6_2/src/pages/SignUp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_2/src/pages/SignUp.vue -------------------------------------------------------------------------------- /chapter-06/6_2/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_2/src/router/index.js -------------------------------------------------------------------------------- /chapter-06/6_2/src/router/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_2/src/router/routes.js -------------------------------------------------------------------------------- /chapter-06/6_2/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_2/src/store/index.js -------------------------------------------------------------------------------- /chapter-06/6_2/src/store/module-example/getters.js: -------------------------------------------------------------------------------- 1 | export function someGetter(/* state */) { 2 | } 3 | -------------------------------------------------------------------------------- /chapter-06/6_3/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_3/.editorconfig -------------------------------------------------------------------------------- /chapter-06/6_3/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_3/.eslintignore -------------------------------------------------------------------------------- /chapter-06/6_3/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_3/.eslintrc.js -------------------------------------------------------------------------------- /chapter-06/6_3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_3/.gitignore -------------------------------------------------------------------------------- /chapter-06/6_3/.graphqlconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_3/.graphqlconfig.yml -------------------------------------------------------------------------------- /chapter-06/6_3/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_3/.postcssrc.js -------------------------------------------------------------------------------- /chapter-06/6_3/.stylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_3/.stylintrc -------------------------------------------------------------------------------- /chapter-06/6_3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_3/README.md -------------------------------------------------------------------------------- /chapter-06/6_3/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_3/babel.config.js -------------------------------------------------------------------------------- /chapter-06/6_3/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_3/jsconfig.json -------------------------------------------------------------------------------- /chapter-06/6_3/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_3/package-lock.json -------------------------------------------------------------------------------- /chapter-06/6_3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_3/package.json -------------------------------------------------------------------------------- /chapter-06/6_3/quasar.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_3/quasar.conf.js -------------------------------------------------------------------------------- /chapter-06/6_3/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_3/src/App.vue -------------------------------------------------------------------------------- /chapter-06/6_3/src/assets/sad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_3/src/assets/sad.svg -------------------------------------------------------------------------------- /chapter-06/6_3/src/boot/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter-06/6_3/src/boot/amplify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_3/src/boot/amplify.js -------------------------------------------------------------------------------- /chapter-06/6_3/src/boot/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_3/src/boot/axios.js -------------------------------------------------------------------------------- /chapter-06/6_3/src/chatApi.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_3/src/chatApi.graphql -------------------------------------------------------------------------------- /chapter-06/6_3/src/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter-06/6_3/src/css/app.styl: -------------------------------------------------------------------------------- 1 | // app global css in Stylus form 2 | -------------------------------------------------------------------------------- /chapter-06/6_3/src/driver/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_3/src/driver/auth.js -------------------------------------------------------------------------------- /chapter-06/6_3/src/driver/bucket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_3/src/driver/bucket.js -------------------------------------------------------------------------------- /chapter-06/6_3/src/layouts/Base.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_3/src/layouts/Base.vue -------------------------------------------------------------------------------- /chapter-06/6_3/src/layouts/Chat.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_3/src/layouts/Chat.vue -------------------------------------------------------------------------------- /chapter-06/6_3/src/pages/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_3/src/pages/Edit.vue -------------------------------------------------------------------------------- /chapter-06/6_3/src/pages/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_3/src/pages/Index.vue -------------------------------------------------------------------------------- /chapter-06/6_3/src/pages/SignUp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_3/src/pages/SignUp.vue -------------------------------------------------------------------------------- /chapter-06/6_3/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_3/src/router/index.js -------------------------------------------------------------------------------- /chapter-06/6_3/src/router/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_3/src/router/routes.js -------------------------------------------------------------------------------- /chapter-06/6_3/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_3/src/store/index.js -------------------------------------------------------------------------------- /chapter-06/6_3/src/store/module-example/getters.js: -------------------------------------------------------------------------------- 1 | export function someGetter(/* state */) { 2 | } 3 | -------------------------------------------------------------------------------- /chapter-06/6_4/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_4/.editorconfig -------------------------------------------------------------------------------- /chapter-06/6_4/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_4/.eslintignore -------------------------------------------------------------------------------- /chapter-06/6_4/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_4/.eslintrc.js -------------------------------------------------------------------------------- /chapter-06/6_4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_4/.gitignore -------------------------------------------------------------------------------- /chapter-06/6_4/.graphqlconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_4/.graphqlconfig.yml -------------------------------------------------------------------------------- /chapter-06/6_4/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_4/.postcssrc.js -------------------------------------------------------------------------------- /chapter-06/6_4/.stylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_4/.stylintrc -------------------------------------------------------------------------------- /chapter-06/6_4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_4/README.md -------------------------------------------------------------------------------- /chapter-06/6_4/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_4/babel.config.js -------------------------------------------------------------------------------- /chapter-06/6_4/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_4/jsconfig.json -------------------------------------------------------------------------------- /chapter-06/6_4/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_4/package-lock.json -------------------------------------------------------------------------------- /chapter-06/6_4/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_4/package.json -------------------------------------------------------------------------------- /chapter-06/6_4/quasar.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_4/quasar.conf.js -------------------------------------------------------------------------------- /chapter-06/6_4/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_4/src/App.vue -------------------------------------------------------------------------------- /chapter-06/6_4/src/assets/sad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_4/src/assets/sad.svg -------------------------------------------------------------------------------- /chapter-06/6_4/src/boot/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter-06/6_4/src/boot/amplify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_4/src/boot/amplify.js -------------------------------------------------------------------------------- /chapter-06/6_4/src/boot/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_4/src/boot/axios.js -------------------------------------------------------------------------------- /chapter-06/6_4/src/chatApi.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_4/src/chatApi.graphql -------------------------------------------------------------------------------- /chapter-06/6_4/src/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter-06/6_4/src/css/app.styl: -------------------------------------------------------------------------------- 1 | // app global css in Stylus form 2 | -------------------------------------------------------------------------------- /chapter-06/6_4/src/driver/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_4/src/driver/auth.js -------------------------------------------------------------------------------- /chapter-06/6_4/src/driver/bucket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_4/src/driver/bucket.js -------------------------------------------------------------------------------- /chapter-06/6_4/src/layouts/Base.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_4/src/layouts/Base.vue -------------------------------------------------------------------------------- /chapter-06/6_4/src/layouts/Chat.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_4/src/layouts/Chat.vue -------------------------------------------------------------------------------- /chapter-06/6_4/src/pages/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_4/src/pages/Edit.vue -------------------------------------------------------------------------------- /chapter-06/6_4/src/pages/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_4/src/pages/Index.vue -------------------------------------------------------------------------------- /chapter-06/6_4/src/pages/SignUp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_4/src/pages/SignUp.vue -------------------------------------------------------------------------------- /chapter-06/6_4/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_4/src/router/index.js -------------------------------------------------------------------------------- /chapter-06/6_4/src/router/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_4/src/router/routes.js -------------------------------------------------------------------------------- /chapter-06/6_4/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/6_4/src/store/index.js -------------------------------------------------------------------------------- /chapter-06/6_4/src/store/module-example/getters.js: -------------------------------------------------------------------------------- 1 | export function someGetter(/* state */) { 2 | } 3 | -------------------------------------------------------------------------------- /chapter-06/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-06/README.md -------------------------------------------------------------------------------- /chapter-07/7_1/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_1/.editorconfig -------------------------------------------------------------------------------- /chapter-07/7_1/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_1/.eslintignore -------------------------------------------------------------------------------- /chapter-07/7_1/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_1/.eslintrc.js -------------------------------------------------------------------------------- /chapter-07/7_1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_1/.gitignore -------------------------------------------------------------------------------- /chapter-07/7_1/.graphqlconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_1/.graphqlconfig.yml -------------------------------------------------------------------------------- /chapter-07/7_1/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_1/.postcssrc.js -------------------------------------------------------------------------------- /chapter-07/7_1/.stylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_1/.stylintrc -------------------------------------------------------------------------------- /chapter-07/7_1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_1/README.md -------------------------------------------------------------------------------- /chapter-07/7_1/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_1/babel.config.js -------------------------------------------------------------------------------- /chapter-07/7_1/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_1/jsconfig.json -------------------------------------------------------------------------------- /chapter-07/7_1/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_1/package-lock.json -------------------------------------------------------------------------------- /chapter-07/7_1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_1/package.json -------------------------------------------------------------------------------- /chapter-07/7_1/quasar.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_1/quasar.conf.js -------------------------------------------------------------------------------- /chapter-07/7_1/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_1/src/App.vue -------------------------------------------------------------------------------- /chapter-07/7_1/src/assets/sad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_1/src/assets/sad.svg -------------------------------------------------------------------------------- /chapter-07/7_1/src/boot/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter-07/7_1/src/boot/amplify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_1/src/boot/amplify.js -------------------------------------------------------------------------------- /chapter-07/7_1/src/boot/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_1/src/boot/axios.js -------------------------------------------------------------------------------- /chapter-07/7_1/src/chatApi.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_1/src/chatApi.graphql -------------------------------------------------------------------------------- /chapter-07/7_1/src/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter-07/7_1/src/css/app.styl: -------------------------------------------------------------------------------- 1 | // app global css in Stylus form 2 | -------------------------------------------------------------------------------- /chapter-07/7_1/src/driver/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_1/src/driver/auth.js -------------------------------------------------------------------------------- /chapter-07/7_1/src/driver/bucket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_1/src/driver/bucket.js -------------------------------------------------------------------------------- /chapter-07/7_1/src/layouts/Base.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_1/src/layouts/Base.vue -------------------------------------------------------------------------------- /chapter-07/7_1/src/layouts/Chat.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_1/src/layouts/Chat.vue -------------------------------------------------------------------------------- /chapter-07/7_1/src/pages/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_1/src/pages/Edit.vue -------------------------------------------------------------------------------- /chapter-07/7_1/src/pages/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_1/src/pages/Index.vue -------------------------------------------------------------------------------- /chapter-07/7_1/src/pages/SignUp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_1/src/pages/SignUp.vue -------------------------------------------------------------------------------- /chapter-07/7_1/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_1/src/router/index.js -------------------------------------------------------------------------------- /chapter-07/7_1/src/router/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_1/src/router/routes.js -------------------------------------------------------------------------------- /chapter-07/7_1/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_1/src/store/index.js -------------------------------------------------------------------------------- /chapter-07/7_1/src/store/module-example/getters.js: -------------------------------------------------------------------------------- 1 | export function someGetter(/* state */) { 2 | } 3 | -------------------------------------------------------------------------------- /chapter-07/7_2/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_2/.editorconfig -------------------------------------------------------------------------------- /chapter-07/7_2/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_2/.eslintignore -------------------------------------------------------------------------------- /chapter-07/7_2/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_2/.eslintrc.js -------------------------------------------------------------------------------- /chapter-07/7_2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_2/.gitignore -------------------------------------------------------------------------------- /chapter-07/7_2/.graphqlconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_2/.graphqlconfig.yml -------------------------------------------------------------------------------- /chapter-07/7_2/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_2/.postcssrc.js -------------------------------------------------------------------------------- /chapter-07/7_2/.stylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_2/.stylintrc -------------------------------------------------------------------------------- /chapter-07/7_2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_2/README.md -------------------------------------------------------------------------------- /chapter-07/7_2/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_2/babel.config.js -------------------------------------------------------------------------------- /chapter-07/7_2/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_2/jsconfig.json -------------------------------------------------------------------------------- /chapter-07/7_2/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_2/package-lock.json -------------------------------------------------------------------------------- /chapter-07/7_2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_2/package.json -------------------------------------------------------------------------------- /chapter-07/7_2/quasar.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_2/quasar.conf.js -------------------------------------------------------------------------------- /chapter-07/7_2/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_2/src/App.vue -------------------------------------------------------------------------------- /chapter-07/7_2/src/assets/sad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_2/src/assets/sad.svg -------------------------------------------------------------------------------- /chapter-07/7_2/src/boot/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter-07/7_2/src/boot/amplify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_2/src/boot/amplify.js -------------------------------------------------------------------------------- /chapter-07/7_2/src/boot/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_2/src/boot/axios.js -------------------------------------------------------------------------------- /chapter-07/7_2/src/chatApi.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_2/src/chatApi.graphql -------------------------------------------------------------------------------- /chapter-07/7_2/src/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter-07/7_2/src/css/app.styl: -------------------------------------------------------------------------------- 1 | // app global css in Stylus form 2 | -------------------------------------------------------------------------------- /chapter-07/7_2/src/driver/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_2/src/driver/auth.js -------------------------------------------------------------------------------- /chapter-07/7_2/src/driver/bucket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_2/src/driver/bucket.js -------------------------------------------------------------------------------- /chapter-07/7_2/src/layouts/Base.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_2/src/layouts/Base.vue -------------------------------------------------------------------------------- /chapter-07/7_2/src/layouts/Chat.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_2/src/layouts/Chat.vue -------------------------------------------------------------------------------- /chapter-07/7_2/src/pages/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_2/src/pages/Edit.vue -------------------------------------------------------------------------------- /chapter-07/7_2/src/pages/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_2/src/pages/Index.vue -------------------------------------------------------------------------------- /chapter-07/7_2/src/pages/SignUp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_2/src/pages/SignUp.vue -------------------------------------------------------------------------------- /chapter-07/7_2/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_2/src/router/index.js -------------------------------------------------------------------------------- /chapter-07/7_2/src/router/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_2/src/router/routes.js -------------------------------------------------------------------------------- /chapter-07/7_2/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_2/src/store/index.js -------------------------------------------------------------------------------- /chapter-07/7_2/src/store/module-example/getters.js: -------------------------------------------------------------------------------- 1 | export function someGetter(/* state */) { 2 | } 3 | -------------------------------------------------------------------------------- /chapter-07/7_3/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_3/.editorconfig -------------------------------------------------------------------------------- /chapter-07/7_3/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_3/.eslintignore -------------------------------------------------------------------------------- /chapter-07/7_3/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_3/.eslintrc.js -------------------------------------------------------------------------------- /chapter-07/7_3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_3/.gitignore -------------------------------------------------------------------------------- /chapter-07/7_3/.graphqlconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_3/.graphqlconfig.yml -------------------------------------------------------------------------------- /chapter-07/7_3/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_3/.postcssrc.js -------------------------------------------------------------------------------- /chapter-07/7_3/.stylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_3/.stylintrc -------------------------------------------------------------------------------- /chapter-07/7_3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_3/README.md -------------------------------------------------------------------------------- /chapter-07/7_3/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_3/babel.config.js -------------------------------------------------------------------------------- /chapter-07/7_3/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_3/jsconfig.json -------------------------------------------------------------------------------- /chapter-07/7_3/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_3/package-lock.json -------------------------------------------------------------------------------- /chapter-07/7_3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_3/package.json -------------------------------------------------------------------------------- /chapter-07/7_3/quasar.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_3/quasar.conf.js -------------------------------------------------------------------------------- /chapter-07/7_3/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_3/src/App.vue -------------------------------------------------------------------------------- /chapter-07/7_3/src/assets/sad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_3/src/assets/sad.svg -------------------------------------------------------------------------------- /chapter-07/7_3/src/boot/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter-07/7_3/src/boot/a2hs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_3/src/boot/a2hs.js -------------------------------------------------------------------------------- /chapter-07/7_3/src/boot/amplify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_3/src/boot/amplify.js -------------------------------------------------------------------------------- /chapter-07/7_3/src/boot/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_3/src/boot/axios.js -------------------------------------------------------------------------------- /chapter-07/7_3/src/chatApi.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_3/src/chatApi.graphql -------------------------------------------------------------------------------- /chapter-07/7_3/src/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter-07/7_3/src/css/app.styl: -------------------------------------------------------------------------------- 1 | // app global css in Stylus form 2 | -------------------------------------------------------------------------------- /chapter-07/7_3/src/driver/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_3/src/driver/auth.js -------------------------------------------------------------------------------- /chapter-07/7_3/src/driver/bucket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_3/src/driver/bucket.js -------------------------------------------------------------------------------- /chapter-07/7_3/src/layouts/Base.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_3/src/layouts/Base.vue -------------------------------------------------------------------------------- /chapter-07/7_3/src/layouts/Chat.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_3/src/layouts/Chat.vue -------------------------------------------------------------------------------- /chapter-07/7_3/src/pages/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_3/src/pages/Edit.vue -------------------------------------------------------------------------------- /chapter-07/7_3/src/pages/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_3/src/pages/Index.vue -------------------------------------------------------------------------------- /chapter-07/7_3/src/pages/SignUp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_3/src/pages/SignUp.vue -------------------------------------------------------------------------------- /chapter-07/7_3/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_3/src/router/index.js -------------------------------------------------------------------------------- /chapter-07/7_3/src/router/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_3/src/router/routes.js -------------------------------------------------------------------------------- /chapter-07/7_3/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_3/src/store/index.js -------------------------------------------------------------------------------- /chapter-07/7_3/src/store/module-example/getters.js: -------------------------------------------------------------------------------- 1 | export function someGetter(/* state */) { 2 | } 3 | -------------------------------------------------------------------------------- /chapter-07/7_4/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_4/.editorconfig -------------------------------------------------------------------------------- /chapter-07/7_4/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_4/.eslintignore -------------------------------------------------------------------------------- /chapter-07/7_4/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_4/.eslintrc.js -------------------------------------------------------------------------------- /chapter-07/7_4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_4/.gitignore -------------------------------------------------------------------------------- /chapter-07/7_4/.graphqlconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_4/.graphqlconfig.yml -------------------------------------------------------------------------------- /chapter-07/7_4/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_4/.postcssrc.js -------------------------------------------------------------------------------- /chapter-07/7_4/.stylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_4/.stylintrc -------------------------------------------------------------------------------- /chapter-07/7_4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_4/README.md -------------------------------------------------------------------------------- /chapter-07/7_4/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_4/babel.config.js -------------------------------------------------------------------------------- /chapter-07/7_4/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_4/jsconfig.json -------------------------------------------------------------------------------- /chapter-07/7_4/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_4/package-lock.json -------------------------------------------------------------------------------- /chapter-07/7_4/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_4/package.json -------------------------------------------------------------------------------- /chapter-07/7_4/quasar.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_4/quasar.conf.js -------------------------------------------------------------------------------- /chapter-07/7_4/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_4/src/App.vue -------------------------------------------------------------------------------- /chapter-07/7_4/src/assets/sad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_4/src/assets/sad.svg -------------------------------------------------------------------------------- /chapter-07/7_4/src/boot/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter-07/7_4/src/boot/a2hs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_4/src/boot/a2hs.js -------------------------------------------------------------------------------- /chapter-07/7_4/src/boot/amplify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_4/src/boot/amplify.js -------------------------------------------------------------------------------- /chapter-07/7_4/src/boot/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_4/src/boot/axios.js -------------------------------------------------------------------------------- /chapter-07/7_4/src/chatApi.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_4/src/chatApi.graphql -------------------------------------------------------------------------------- /chapter-07/7_4/src/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter-07/7_4/src/css/app.styl: -------------------------------------------------------------------------------- 1 | // app global css in Stylus form 2 | -------------------------------------------------------------------------------- /chapter-07/7_4/src/driver/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_4/src/driver/auth.js -------------------------------------------------------------------------------- /chapter-07/7_4/src/driver/bucket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_4/src/driver/bucket.js -------------------------------------------------------------------------------- /chapter-07/7_4/src/layouts/Base.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_4/src/layouts/Base.vue -------------------------------------------------------------------------------- /chapter-07/7_4/src/layouts/Chat.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_4/src/layouts/Chat.vue -------------------------------------------------------------------------------- /chapter-07/7_4/src/pages/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_4/src/pages/Edit.vue -------------------------------------------------------------------------------- /chapter-07/7_4/src/pages/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_4/src/pages/Index.vue -------------------------------------------------------------------------------- /chapter-07/7_4/src/pages/SignUp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_4/src/pages/SignUp.vue -------------------------------------------------------------------------------- /chapter-07/7_4/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_4/src/router/index.js -------------------------------------------------------------------------------- /chapter-07/7_4/src/router/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_4/src/router/routes.js -------------------------------------------------------------------------------- /chapter-07/7_4/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_4/src/store/index.js -------------------------------------------------------------------------------- /chapter-07/7_4/src/store/module-example/getters.js: -------------------------------------------------------------------------------- 1 | export function someGetter(/* state */) { 2 | } 3 | -------------------------------------------------------------------------------- /chapter-07/7_5/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_5/.editorconfig -------------------------------------------------------------------------------- /chapter-07/7_5/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_5/.eslintignore -------------------------------------------------------------------------------- /chapter-07/7_5/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_5/.eslintrc.js -------------------------------------------------------------------------------- /chapter-07/7_5/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_5/.gitignore -------------------------------------------------------------------------------- /chapter-07/7_5/.graphqlconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_5/.graphqlconfig.yml -------------------------------------------------------------------------------- /chapter-07/7_5/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_5/.postcssrc.js -------------------------------------------------------------------------------- /chapter-07/7_5/.stylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_5/.stylintrc -------------------------------------------------------------------------------- /chapter-07/7_5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_5/README.md -------------------------------------------------------------------------------- /chapter-07/7_5/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_5/babel.config.js -------------------------------------------------------------------------------- /chapter-07/7_5/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_5/jsconfig.json -------------------------------------------------------------------------------- /chapter-07/7_5/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_5/package-lock.json -------------------------------------------------------------------------------- /chapter-07/7_5/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_5/package.json -------------------------------------------------------------------------------- /chapter-07/7_5/quasar.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_5/quasar.conf.js -------------------------------------------------------------------------------- /chapter-07/7_5/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_5/src/App.vue -------------------------------------------------------------------------------- /chapter-07/7_5/src/assets/sad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_5/src/assets/sad.svg -------------------------------------------------------------------------------- /chapter-07/7_5/src/boot/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter-07/7_5/src/boot/a2hs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_5/src/boot/a2hs.js -------------------------------------------------------------------------------- /chapter-07/7_5/src/boot/amplify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_5/src/boot/amplify.js -------------------------------------------------------------------------------- /chapter-07/7_5/src/boot/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_5/src/boot/axios.js -------------------------------------------------------------------------------- /chapter-07/7_5/src/chatApi.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_5/src/chatApi.graphql -------------------------------------------------------------------------------- /chapter-07/7_5/src/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter-07/7_5/src/css/app.styl: -------------------------------------------------------------------------------- 1 | // app global css in Stylus form 2 | -------------------------------------------------------------------------------- /chapter-07/7_5/src/driver/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_5/src/driver/auth.js -------------------------------------------------------------------------------- /chapter-07/7_5/src/driver/bucket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_5/src/driver/bucket.js -------------------------------------------------------------------------------- /chapter-07/7_5/src/layouts/Base.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_5/src/layouts/Base.vue -------------------------------------------------------------------------------- /chapter-07/7_5/src/layouts/Chat.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_5/src/layouts/Chat.vue -------------------------------------------------------------------------------- /chapter-07/7_5/src/pages/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_5/src/pages/Edit.vue -------------------------------------------------------------------------------- /chapter-07/7_5/src/pages/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_5/src/pages/Index.vue -------------------------------------------------------------------------------- /chapter-07/7_5/src/pages/SignUp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_5/src/pages/SignUp.vue -------------------------------------------------------------------------------- /chapter-07/7_5/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_5/src/router/index.js -------------------------------------------------------------------------------- /chapter-07/7_5/src/router/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_5/src/router/routes.js -------------------------------------------------------------------------------- /chapter-07/7_5/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/7_5/src/store/index.js -------------------------------------------------------------------------------- /chapter-07/7_5/src/store/module-example/getters.js: -------------------------------------------------------------------------------- 1 | export function someGetter(/* state */) { 2 | } 3 | -------------------------------------------------------------------------------- /chapter-07/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Vue.js-Applications-with-GraphQL/HEAD/chapter-07/README.md --------------------------------------------------------------------------------