├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── public ├── _redirects ├── favicon.ico └── index.html ├── server ├── .gitignore ├── .graphqlconfig.yml ├── database │ ├── datamodel.graphql │ ├── prisma.yml │ └── seed.graphql ├── package.json ├── src │ ├── generated │ │ └── prisma.graphql │ ├── index.js │ └── schema.graphql └── yarn.lock ├── src ├── assets │ ├── close.svg │ └── plus.svg ├── components │ ├── CreatePage.js │ ├── DetailPage.js │ ├── DraftsPage.js │ ├── FeedPage.js │ └── Post.js ├── constants │ └── modalStyle.js ├── index.css └── index.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikolasburk/react-apollo-tutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikolasburk/react-apollo-tutorial/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikolasburk/react-apollo-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikolasburk/react-apollo-tutorial/HEAD/package.json -------------------------------------------------------------------------------- /public/_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikolasburk/react-apollo-tutorial/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikolasburk/react-apollo-tutorial/HEAD/public/index.html -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikolasburk/react-apollo-tutorial/HEAD/server/.gitignore -------------------------------------------------------------------------------- /server/.graphqlconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikolasburk/react-apollo-tutorial/HEAD/server/.graphqlconfig.yml -------------------------------------------------------------------------------- /server/database/datamodel.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikolasburk/react-apollo-tutorial/HEAD/server/database/datamodel.graphql -------------------------------------------------------------------------------- /server/database/prisma.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikolasburk/react-apollo-tutorial/HEAD/server/database/prisma.yml -------------------------------------------------------------------------------- /server/database/seed.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikolasburk/react-apollo-tutorial/HEAD/server/database/seed.graphql -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikolasburk/react-apollo-tutorial/HEAD/server/package.json -------------------------------------------------------------------------------- /server/src/generated/prisma.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikolasburk/react-apollo-tutorial/HEAD/server/src/generated/prisma.graphql -------------------------------------------------------------------------------- /server/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikolasburk/react-apollo-tutorial/HEAD/server/src/index.js -------------------------------------------------------------------------------- /server/src/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikolasburk/react-apollo-tutorial/HEAD/server/src/schema.graphql -------------------------------------------------------------------------------- /server/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikolasburk/react-apollo-tutorial/HEAD/server/yarn.lock -------------------------------------------------------------------------------- /src/assets/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikolasburk/react-apollo-tutorial/HEAD/src/assets/close.svg -------------------------------------------------------------------------------- /src/assets/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikolasburk/react-apollo-tutorial/HEAD/src/assets/plus.svg -------------------------------------------------------------------------------- /src/components/CreatePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikolasburk/react-apollo-tutorial/HEAD/src/components/CreatePage.js -------------------------------------------------------------------------------- /src/components/DetailPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikolasburk/react-apollo-tutorial/HEAD/src/components/DetailPage.js -------------------------------------------------------------------------------- /src/components/DraftsPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikolasburk/react-apollo-tutorial/HEAD/src/components/DraftsPage.js -------------------------------------------------------------------------------- /src/components/FeedPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikolasburk/react-apollo-tutorial/HEAD/src/components/FeedPage.js -------------------------------------------------------------------------------- /src/components/Post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikolasburk/react-apollo-tutorial/HEAD/src/components/Post.js -------------------------------------------------------------------------------- /src/constants/modalStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikolasburk/react-apollo-tutorial/HEAD/src/constants/modalStyle.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikolasburk/react-apollo-tutorial/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikolasburk/react-apollo-tutorial/HEAD/src/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikolasburk/react-apollo-tutorial/HEAD/yarn.lock --------------------------------------------------------------------------------