├── .all-contributorsrc ├── .github └── workflows │ └── release.yml ├── .gitignore ├── LICENSE ├── README.md ├── demo ├── .nvmrc ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.js ├── gatsby-ssr.js ├── graphcms-fragments │ ├── Asset.graphql │ ├── Category.graphql │ ├── Product.graphql │ ├── ScheduledOperation.graphql │ ├── ScheduledRelease.graphql │ └── User.graphql ├── package.json ├── postcss.config.js ├── src │ ├── components │ │ ├── layout.js │ │ └── paragraph.js │ ├── pages │ │ └── index.js │ ├── styles │ │ └── main.css │ └── templates │ │ └── product-page.js └── tailwind.config.js ├── gatsby-source-graphcms ├── .babelrc ├── README.md ├── index.js ├── package.json └── src │ ├── gatsby-node.js │ └── util │ ├── constants.js │ ├── getDominantColor.js │ ├── getImageBase64.js │ ├── getTracedSVG.js │ └── reportPanic.js ├── package.json ├── prettier.config.js ├── renovate.json └── yarn.lock /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-source-graphcms/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-source-graphcms/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-source-graphcms/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-source-graphcms/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | gatsby-source-graphcms/README.md -------------------------------------------------------------------------------- /demo/.nvmrc: -------------------------------------------------------------------------------- 1 | 14.15 2 | -------------------------------------------------------------------------------- /demo/gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-source-graphcms/HEAD/demo/gatsby-browser.js -------------------------------------------------------------------------------- /demo/gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-source-graphcms/HEAD/demo/gatsby-config.js -------------------------------------------------------------------------------- /demo/gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-source-graphcms/HEAD/demo/gatsby-node.js -------------------------------------------------------------------------------- /demo/gatsby-ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-source-graphcms/HEAD/demo/gatsby-ssr.js -------------------------------------------------------------------------------- /demo/graphcms-fragments/Asset.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-source-graphcms/HEAD/demo/graphcms-fragments/Asset.graphql -------------------------------------------------------------------------------- /demo/graphcms-fragments/Category.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-source-graphcms/HEAD/demo/graphcms-fragments/Category.graphql -------------------------------------------------------------------------------- /demo/graphcms-fragments/Product.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-source-graphcms/HEAD/demo/graphcms-fragments/Product.graphql -------------------------------------------------------------------------------- /demo/graphcms-fragments/ScheduledOperation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-source-graphcms/HEAD/demo/graphcms-fragments/ScheduledOperation.graphql -------------------------------------------------------------------------------- /demo/graphcms-fragments/ScheduledRelease.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-source-graphcms/HEAD/demo/graphcms-fragments/ScheduledRelease.graphql -------------------------------------------------------------------------------- /demo/graphcms-fragments/User.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-source-graphcms/HEAD/demo/graphcms-fragments/User.graphql -------------------------------------------------------------------------------- /demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-source-graphcms/HEAD/demo/package.json -------------------------------------------------------------------------------- /demo/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-source-graphcms/HEAD/demo/postcss.config.js -------------------------------------------------------------------------------- /demo/src/components/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-source-graphcms/HEAD/demo/src/components/layout.js -------------------------------------------------------------------------------- /demo/src/components/paragraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-source-graphcms/HEAD/demo/src/components/paragraph.js -------------------------------------------------------------------------------- /demo/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-source-graphcms/HEAD/demo/src/pages/index.js -------------------------------------------------------------------------------- /demo/src/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-source-graphcms/HEAD/demo/src/styles/main.css -------------------------------------------------------------------------------- /demo/src/templates/product-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-source-graphcms/HEAD/demo/src/templates/product-page.js -------------------------------------------------------------------------------- /demo/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-source-graphcms/HEAD/demo/tailwind.config.js -------------------------------------------------------------------------------- /gatsby-source-graphcms/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-source-graphcms/HEAD/gatsby-source-graphcms/.babelrc -------------------------------------------------------------------------------- /gatsby-source-graphcms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-source-graphcms/HEAD/gatsby-source-graphcms/README.md -------------------------------------------------------------------------------- /gatsby-source-graphcms/index.js: -------------------------------------------------------------------------------- 1 | // noop 2 | -------------------------------------------------------------------------------- /gatsby-source-graphcms/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-source-graphcms/HEAD/gatsby-source-graphcms/package.json -------------------------------------------------------------------------------- /gatsby-source-graphcms/src/gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-source-graphcms/HEAD/gatsby-source-graphcms/src/gatsby-node.js -------------------------------------------------------------------------------- /gatsby-source-graphcms/src/util/constants.js: -------------------------------------------------------------------------------- 1 | export const PLUGIN_NAME = `gatsby-source-graphcms` 2 | -------------------------------------------------------------------------------- /gatsby-source-graphcms/src/util/getDominantColor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-source-graphcms/HEAD/gatsby-source-graphcms/src/util/getDominantColor.js -------------------------------------------------------------------------------- /gatsby-source-graphcms/src/util/getImageBase64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-source-graphcms/HEAD/gatsby-source-graphcms/src/util/getImageBase64.js -------------------------------------------------------------------------------- /gatsby-source-graphcms/src/util/getTracedSVG.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-source-graphcms/HEAD/gatsby-source-graphcms/src/util/getTracedSVG.js -------------------------------------------------------------------------------- /gatsby-source-graphcms/src/util/reportPanic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-source-graphcms/HEAD/gatsby-source-graphcms/src/util/reportPanic.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-source-graphcms/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-source-graphcms/HEAD/prettier.config.js -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-source-graphcms/HEAD/renovate.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hygraph/gatsby-source-graphcms/HEAD/yarn.lock --------------------------------------------------------------------------------