├── .babelrc ├── .eslintrc.js ├── .gitignore ├── .npmignore ├── .prettierrc.js ├── LICENSE.md ├── README.md ├── assets └── webhook.png ├── gatsby-node.js ├── index.js ├── package.json ├── src ├── axiosInstance.js ├── clean-data.js ├── download-media-files.js ├── fetch.js ├── gatsby-node.js ├── helpers.js └── normalize.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsby-uc/gatsby-source-strapi/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsby-uc/gatsby-source-strapi/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsby-uc/gatsby-source-strapi/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsby-uc/gatsby-source-strapi/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsby-uc/gatsby-source-strapi/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsby-uc/gatsby-source-strapi/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsby-uc/gatsby-source-strapi/HEAD/README.md -------------------------------------------------------------------------------- /assets/webhook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsby-uc/gatsby-source-strapi/HEAD/assets/webhook.png -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/gatsby-node'); 2 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | // noop 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsby-uc/gatsby-source-strapi/HEAD/package.json -------------------------------------------------------------------------------- /src/axiosInstance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsby-uc/gatsby-source-strapi/HEAD/src/axiosInstance.js -------------------------------------------------------------------------------- /src/clean-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsby-uc/gatsby-source-strapi/HEAD/src/clean-data.js -------------------------------------------------------------------------------- /src/download-media-files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsby-uc/gatsby-source-strapi/HEAD/src/download-media-files.js -------------------------------------------------------------------------------- /src/fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsby-uc/gatsby-source-strapi/HEAD/src/fetch.js -------------------------------------------------------------------------------- /src/gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsby-uc/gatsby-source-strapi/HEAD/src/gatsby-node.js -------------------------------------------------------------------------------- /src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsby-uc/gatsby-source-strapi/HEAD/src/helpers.js -------------------------------------------------------------------------------- /src/normalize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsby-uc/gatsby-source-strapi/HEAD/src/normalize.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsby-uc/gatsby-source-strapi/HEAD/yarn.lock --------------------------------------------------------------------------------