├── .babelrc ├── .gitignore ├── CHANGELOG.md ├── README.md ├── createNodeEntities.js ├── gatsby-node.js ├── gatsby-source-custom-api-logo.png ├── gatsby-source-custom-api.code-workspace ├── index.js ├── package.json ├── utils ├── buildNode.js ├── flattenEntities.js ├── getTypeDefs.js ├── getUrl.js ├── helpers.js ├── loadImages.js └── normalizeKeys.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-source-custom-api/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-source-custom-api/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-source-custom-api/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-source-custom-api/HEAD/README.md -------------------------------------------------------------------------------- /createNodeEntities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-source-custom-api/HEAD/createNodeEntities.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-source-custom-api/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /gatsby-source-custom-api-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-source-custom-api/HEAD/gatsby-source-custom-api-logo.png -------------------------------------------------------------------------------- /gatsby-source-custom-api.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-source-custom-api/HEAD/gatsby-source-custom-api.code-workspace -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-source-custom-api/HEAD/package.json -------------------------------------------------------------------------------- /utils/buildNode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-source-custom-api/HEAD/utils/buildNode.js -------------------------------------------------------------------------------- /utils/flattenEntities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-source-custom-api/HEAD/utils/flattenEntities.js -------------------------------------------------------------------------------- /utils/getTypeDefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-source-custom-api/HEAD/utils/getTypeDefs.js -------------------------------------------------------------------------------- /utils/getUrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-source-custom-api/HEAD/utils/getUrl.js -------------------------------------------------------------------------------- /utils/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-source-custom-api/HEAD/utils/helpers.js -------------------------------------------------------------------------------- /utils/loadImages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-source-custom-api/HEAD/utils/loadImages.js -------------------------------------------------------------------------------- /utils/normalizeKeys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-source-custom-api/HEAD/utils/normalizeKeys.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-source-custom-api/HEAD/yarn.lock --------------------------------------------------------------------------------