├── .gitignore ├── README.md ├── components ├── App.js ├── ArtistDetails.js ├── Card.js ├── Grid.js ├── Header.js ├── Loading.js ├── Nav.js ├── PageImage.js ├── RecordDetails.js └── ReviewDetails.js ├── docs └── settings.png ├── lib ├── initApollo.js └── withData.js ├── package.json ├── pages ├── artists.js ├── artists │ └── details.js ├── index.js ├── records.js ├── records │ └── details.js └── reviews │ └── details.js ├── server.js ├── static ├── microphone.svg ├── records.svg └── turntable.svg └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | _STORE 2 | node_modules 3 | *~ 4 | .next 5 | npm-debug.log 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/example_01_nextjs_apollo/HEAD/README.md -------------------------------------------------------------------------------- /components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/example_01_nextjs_apollo/HEAD/components/App.js -------------------------------------------------------------------------------- /components/ArtistDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/example_01_nextjs_apollo/HEAD/components/ArtistDetails.js -------------------------------------------------------------------------------- /components/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/example_01_nextjs_apollo/HEAD/components/Card.js -------------------------------------------------------------------------------- /components/Grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/example_01_nextjs_apollo/HEAD/components/Grid.js -------------------------------------------------------------------------------- /components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/example_01_nextjs_apollo/HEAD/components/Header.js -------------------------------------------------------------------------------- /components/Loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/example_01_nextjs_apollo/HEAD/components/Loading.js -------------------------------------------------------------------------------- /components/Nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/example_01_nextjs_apollo/HEAD/components/Nav.js -------------------------------------------------------------------------------- /components/PageImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/example_01_nextjs_apollo/HEAD/components/PageImage.js -------------------------------------------------------------------------------- /components/RecordDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/example_01_nextjs_apollo/HEAD/components/RecordDetails.js -------------------------------------------------------------------------------- /components/ReviewDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/example_01_nextjs_apollo/HEAD/components/ReviewDetails.js -------------------------------------------------------------------------------- /docs/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/example_01_nextjs_apollo/HEAD/docs/settings.png -------------------------------------------------------------------------------- /lib/initApollo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/example_01_nextjs_apollo/HEAD/lib/initApollo.js -------------------------------------------------------------------------------- /lib/withData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/example_01_nextjs_apollo/HEAD/lib/withData.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/example_01_nextjs_apollo/HEAD/package.json -------------------------------------------------------------------------------- /pages/artists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/example_01_nextjs_apollo/HEAD/pages/artists.js -------------------------------------------------------------------------------- /pages/artists/details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/example_01_nextjs_apollo/HEAD/pages/artists/details.js -------------------------------------------------------------------------------- /pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/example_01_nextjs_apollo/HEAD/pages/index.js -------------------------------------------------------------------------------- /pages/records.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/example_01_nextjs_apollo/HEAD/pages/records.js -------------------------------------------------------------------------------- /pages/records/details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/example_01_nextjs_apollo/HEAD/pages/records/details.js -------------------------------------------------------------------------------- /pages/reviews/details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/example_01_nextjs_apollo/HEAD/pages/reviews/details.js -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/example_01_nextjs_apollo/HEAD/server.js -------------------------------------------------------------------------------- /static/microphone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/example_01_nextjs_apollo/HEAD/static/microphone.svg -------------------------------------------------------------------------------- /static/records.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/example_01_nextjs_apollo/HEAD/static/records.svg -------------------------------------------------------------------------------- /static/turntable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/example_01_nextjs_apollo/HEAD/static/turntable.svg -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/example_01_nextjs_apollo/HEAD/yarn.lock --------------------------------------------------------------------------------