├── .babelrc ├── .gitignore ├── .npmignore ├── README.md ├── index.js ├── package.json ├── src ├── fetch.js ├── gatsby-node.js ├── helpers.js ├── http-exception-handler.js └── normalize.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinhle-agilityio/gatsby-source-apiserver/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinhle-agilityio/gatsby-source-apiserver/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | *.log 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinhle-agilityio/gatsby-source-apiserver/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinhle-agilityio/gatsby-source-apiserver/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinhle-agilityio/gatsby-source-apiserver/HEAD/package.json -------------------------------------------------------------------------------- /src/fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinhle-agilityio/gatsby-source-apiserver/HEAD/src/fetch.js -------------------------------------------------------------------------------- /src/gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinhle-agilityio/gatsby-source-apiserver/HEAD/src/gatsby-node.js -------------------------------------------------------------------------------- /src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinhle-agilityio/gatsby-source-apiserver/HEAD/src/helpers.js -------------------------------------------------------------------------------- /src/http-exception-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinhle-agilityio/gatsby-source-apiserver/HEAD/src/http-exception-handler.js -------------------------------------------------------------------------------- /src/normalize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinhle-agilityio/gatsby-source-apiserver/HEAD/src/normalize.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinhle-agilityio/gatsby-source-apiserver/HEAD/yarn.lock --------------------------------------------------------------------------------