├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── functions └── graphql │ ├── graphql.js │ ├── resolvers │ └── index.js │ └── schema.graphql ├── gatsby-config.js ├── netlify.toml ├── package.json ├── src ├── components │ ├── header.js │ ├── layout.js │ ├── seo.js │ └── toggle.js ├── gatsby-plugin-theme-ui │ └── index.js ├── gatsby-theme-apollo │ └── client.js ├── images │ ├── gatsby-astronaut.png │ └── gatsby-icon.png └── pages │ ├── 404.js │ ├── index.js │ └── page-2.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piducancore/gatsby-starter-apollo-netlify/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piducancore/gatsby-starter-apollo-netlify/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piducancore/gatsby-starter-apollo-netlify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piducancore/gatsby-starter-apollo-netlify/HEAD/README.md -------------------------------------------------------------------------------- /functions/graphql/graphql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piducancore/gatsby-starter-apollo-netlify/HEAD/functions/graphql/graphql.js -------------------------------------------------------------------------------- /functions/graphql/resolvers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piducancore/gatsby-starter-apollo-netlify/HEAD/functions/graphql/resolvers/index.js -------------------------------------------------------------------------------- /functions/graphql/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piducancore/gatsby-starter-apollo-netlify/HEAD/functions/graphql/schema.graphql -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piducancore/gatsby-starter-apollo-netlify/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piducancore/gatsby-starter-apollo-netlify/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piducancore/gatsby-starter-apollo-netlify/HEAD/package.json -------------------------------------------------------------------------------- /src/components/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piducancore/gatsby-starter-apollo-netlify/HEAD/src/components/header.js -------------------------------------------------------------------------------- /src/components/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piducancore/gatsby-starter-apollo-netlify/HEAD/src/components/layout.js -------------------------------------------------------------------------------- /src/components/seo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piducancore/gatsby-starter-apollo-netlify/HEAD/src/components/seo.js -------------------------------------------------------------------------------- /src/components/toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piducancore/gatsby-starter-apollo-netlify/HEAD/src/components/toggle.js -------------------------------------------------------------------------------- /src/gatsby-plugin-theme-ui/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piducancore/gatsby-starter-apollo-netlify/HEAD/src/gatsby-plugin-theme-ui/index.js -------------------------------------------------------------------------------- /src/gatsby-theme-apollo/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piducancore/gatsby-starter-apollo-netlify/HEAD/src/gatsby-theme-apollo/client.js -------------------------------------------------------------------------------- /src/images/gatsby-astronaut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piducancore/gatsby-starter-apollo-netlify/HEAD/src/images/gatsby-astronaut.png -------------------------------------------------------------------------------- /src/images/gatsby-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piducancore/gatsby-starter-apollo-netlify/HEAD/src/images/gatsby-icon.png -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piducancore/gatsby-starter-apollo-netlify/HEAD/src/pages/404.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piducancore/gatsby-starter-apollo-netlify/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/pages/page-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piducancore/gatsby-starter-apollo-netlify/HEAD/src/pages/page-2.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piducancore/gatsby-starter-apollo-netlify/HEAD/yarn.lock --------------------------------------------------------------------------------