├── .gitignore ├── LICENSE ├── README.md ├── gatsby-config.js ├── gatsby-node.js ├── gatsby ├── configQuery.js └── queryAll.js ├── package.json ├── src ├── components │ ├── header.js │ ├── layout.css │ └── layout.js ├── pages │ ├── 404.js │ ├── artists.js │ ├── index.js │ ├── records.js │ └── reviews.js └── templates │ ├── artist-detail.js │ ├── record-detail.js │ └── review-detail.js ├── static ├── apple-touch-icon.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon-96x96.png ├── favicon.ico └── favicons │ ├── chrome-192.png │ └── chrome-512.png └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-graphcms-example/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-graphcms-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-graphcms-example/HEAD/README.md -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-graphcms-example/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-graphcms-example/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /gatsby/configQuery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-graphcms-example/HEAD/gatsby/configQuery.js -------------------------------------------------------------------------------- /gatsby/queryAll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-graphcms-example/HEAD/gatsby/queryAll.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-graphcms-example/HEAD/package.json -------------------------------------------------------------------------------- /src/components/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-graphcms-example/HEAD/src/components/header.js -------------------------------------------------------------------------------- /src/components/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-graphcms-example/HEAD/src/components/layout.css -------------------------------------------------------------------------------- /src/components/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-graphcms-example/HEAD/src/components/layout.js -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-graphcms-example/HEAD/src/pages/404.js -------------------------------------------------------------------------------- /src/pages/artists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-graphcms-example/HEAD/src/pages/artists.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-graphcms-example/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/pages/records.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-graphcms-example/HEAD/src/pages/records.js -------------------------------------------------------------------------------- /src/pages/reviews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-graphcms-example/HEAD/src/pages/reviews.js -------------------------------------------------------------------------------- /src/templates/artist-detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-graphcms-example/HEAD/src/templates/artist-detail.js -------------------------------------------------------------------------------- /src/templates/record-detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-graphcms-example/HEAD/src/templates/record-detail.js -------------------------------------------------------------------------------- /src/templates/review-detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-graphcms-example/HEAD/src/templates/review-detail.js -------------------------------------------------------------------------------- /static/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-graphcms-example/HEAD/static/apple-touch-icon.png -------------------------------------------------------------------------------- /static/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-graphcms-example/HEAD/static/favicon-16x16.png -------------------------------------------------------------------------------- /static/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-graphcms-example/HEAD/static/favicon-32x32.png -------------------------------------------------------------------------------- /static/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-graphcms-example/HEAD/static/favicon-96x96.png -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-graphcms-example/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/favicons/chrome-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-graphcms-example/HEAD/static/favicons/chrome-192.png -------------------------------------------------------------------------------- /static/favicons/chrome-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-graphcms-example/HEAD/static/favicons/chrome-512.png -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-graphcms-example/HEAD/yarn.lock --------------------------------------------------------------------------------