├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── README.md ├── examples └── gatsby-plugin-graphql-component-default-example │ ├── .gitignore │ ├── .prettierignore │ ├── LICENSE │ ├── README.md │ ├── content │ ├── assets │ │ ├── gatsby-icon.png │ │ └── profile-pic.jpg │ └── blog │ │ ├── hello-world │ │ ├── index.md │ │ └── salty_egg.jpg │ │ ├── my-second-post │ │ └── index.md │ │ └── new-beginnings │ │ └── index.md │ ├── gatsby-browser.js │ ├── gatsby-config.js │ ├── gatsby-node.js │ ├── package.json │ ├── src │ ├── components │ │ ├── bio.js │ │ ├── layout.js │ │ ├── seo.js │ │ └── tester.js │ ├── pages │ │ ├── 404.js │ │ ├── index.tsx │ │ ├── page.js │ │ ├── static-hook.js │ │ └── static.js │ ├── templates │ │ └── blog-post.js │ └── utils │ │ └── typography.js │ ├── static │ ├── favicon.ico │ └── robots.txt │ └── yarn.lock ├── lerna.json ├── package.json ├── packages └── gatsby-plugin-graphql-component │ ├── LICENSE │ ├── README.md │ ├── gatsby-browser.js │ ├── gatsby-node.js │ ├── gatsby-ssr.js │ ├── index.js │ ├── output.js │ ├── package.json │ ├── static-query-babel-plugin.js │ ├── transform.js │ └── visitor.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pristas-peter/gatsby-plugin-graphql-component/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pristas-peter/gatsby-plugin-graphql-component/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pristas-peter/gatsby-plugin-graphql-component/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pristas-peter/gatsby-plugin-graphql-component/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pristas-peter/gatsby-plugin-graphql-component/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | packages/gatsby-plugin-graphql-component/README.md -------------------------------------------------------------------------------- /examples/gatsby-plugin-graphql-component-default-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pristas-peter/gatsby-plugin-graphql-component/HEAD/examples/gatsby-plugin-graphql-component-default-example/.gitignore -------------------------------------------------------------------------------- /examples/gatsby-plugin-graphql-component-default-example/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pristas-peter/gatsby-plugin-graphql-component/HEAD/examples/gatsby-plugin-graphql-component-default-example/.prettierignore -------------------------------------------------------------------------------- /examples/gatsby-plugin-graphql-component-default-example/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pristas-peter/gatsby-plugin-graphql-component/HEAD/examples/gatsby-plugin-graphql-component-default-example/LICENSE -------------------------------------------------------------------------------- /examples/gatsby-plugin-graphql-component-default-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pristas-peter/gatsby-plugin-graphql-component/HEAD/examples/gatsby-plugin-graphql-component-default-example/README.md -------------------------------------------------------------------------------- /examples/gatsby-plugin-graphql-component-default-example/content/assets/gatsby-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pristas-peter/gatsby-plugin-graphql-component/HEAD/examples/gatsby-plugin-graphql-component-default-example/content/assets/gatsby-icon.png -------------------------------------------------------------------------------- /examples/gatsby-plugin-graphql-component-default-example/content/assets/profile-pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pristas-peter/gatsby-plugin-graphql-component/HEAD/examples/gatsby-plugin-graphql-component-default-example/content/assets/profile-pic.jpg -------------------------------------------------------------------------------- /examples/gatsby-plugin-graphql-component-default-example/content/blog/hello-world/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pristas-peter/gatsby-plugin-graphql-component/HEAD/examples/gatsby-plugin-graphql-component-default-example/content/blog/hello-world/index.md -------------------------------------------------------------------------------- /examples/gatsby-plugin-graphql-component-default-example/content/blog/hello-world/salty_egg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pristas-peter/gatsby-plugin-graphql-component/HEAD/examples/gatsby-plugin-graphql-component-default-example/content/blog/hello-world/salty_egg.jpg -------------------------------------------------------------------------------- /examples/gatsby-plugin-graphql-component-default-example/content/blog/my-second-post/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pristas-peter/gatsby-plugin-graphql-component/HEAD/examples/gatsby-plugin-graphql-component-default-example/content/blog/my-second-post/index.md -------------------------------------------------------------------------------- /examples/gatsby-plugin-graphql-component-default-example/content/blog/new-beginnings/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pristas-peter/gatsby-plugin-graphql-component/HEAD/examples/gatsby-plugin-graphql-component-default-example/content/blog/new-beginnings/index.md -------------------------------------------------------------------------------- /examples/gatsby-plugin-graphql-component-default-example/gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pristas-peter/gatsby-plugin-graphql-component/HEAD/examples/gatsby-plugin-graphql-component-default-example/gatsby-browser.js -------------------------------------------------------------------------------- /examples/gatsby-plugin-graphql-component-default-example/gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pristas-peter/gatsby-plugin-graphql-component/HEAD/examples/gatsby-plugin-graphql-component-default-example/gatsby-config.js -------------------------------------------------------------------------------- /examples/gatsby-plugin-graphql-component-default-example/gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pristas-peter/gatsby-plugin-graphql-component/HEAD/examples/gatsby-plugin-graphql-component-default-example/gatsby-node.js -------------------------------------------------------------------------------- /examples/gatsby-plugin-graphql-component-default-example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pristas-peter/gatsby-plugin-graphql-component/HEAD/examples/gatsby-plugin-graphql-component-default-example/package.json -------------------------------------------------------------------------------- /examples/gatsby-plugin-graphql-component-default-example/src/components/bio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pristas-peter/gatsby-plugin-graphql-component/HEAD/examples/gatsby-plugin-graphql-component-default-example/src/components/bio.js -------------------------------------------------------------------------------- /examples/gatsby-plugin-graphql-component-default-example/src/components/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pristas-peter/gatsby-plugin-graphql-component/HEAD/examples/gatsby-plugin-graphql-component-default-example/src/components/layout.js -------------------------------------------------------------------------------- /examples/gatsby-plugin-graphql-component-default-example/src/components/seo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pristas-peter/gatsby-plugin-graphql-component/HEAD/examples/gatsby-plugin-graphql-component-default-example/src/components/seo.js -------------------------------------------------------------------------------- /examples/gatsby-plugin-graphql-component-default-example/src/components/tester.js: -------------------------------------------------------------------------------- 1 | export default () => `Testeros` 2 | -------------------------------------------------------------------------------- /examples/gatsby-plugin-graphql-component-default-example/src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pristas-peter/gatsby-plugin-graphql-component/HEAD/examples/gatsby-plugin-graphql-component-default-example/src/pages/404.js -------------------------------------------------------------------------------- /examples/gatsby-plugin-graphql-component-default-example/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pristas-peter/gatsby-plugin-graphql-component/HEAD/examples/gatsby-plugin-graphql-component-default-example/src/pages/index.tsx -------------------------------------------------------------------------------- /examples/gatsby-plugin-graphql-component-default-example/src/pages/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pristas-peter/gatsby-plugin-graphql-component/HEAD/examples/gatsby-plugin-graphql-component-default-example/src/pages/page.js -------------------------------------------------------------------------------- /examples/gatsby-plugin-graphql-component-default-example/src/pages/static-hook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pristas-peter/gatsby-plugin-graphql-component/HEAD/examples/gatsby-plugin-graphql-component-default-example/src/pages/static-hook.js -------------------------------------------------------------------------------- /examples/gatsby-plugin-graphql-component-default-example/src/pages/static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pristas-peter/gatsby-plugin-graphql-component/HEAD/examples/gatsby-plugin-graphql-component-default-example/src/pages/static.js -------------------------------------------------------------------------------- /examples/gatsby-plugin-graphql-component-default-example/src/templates/blog-post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pristas-peter/gatsby-plugin-graphql-component/HEAD/examples/gatsby-plugin-graphql-component-default-example/src/templates/blog-post.js -------------------------------------------------------------------------------- /examples/gatsby-plugin-graphql-component-default-example/src/utils/typography.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pristas-peter/gatsby-plugin-graphql-component/HEAD/examples/gatsby-plugin-graphql-component-default-example/src/utils/typography.js -------------------------------------------------------------------------------- /examples/gatsby-plugin-graphql-component-default-example/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pristas-peter/gatsby-plugin-graphql-component/HEAD/examples/gatsby-plugin-graphql-component-default-example/static/favicon.ico -------------------------------------------------------------------------------- /examples/gatsby-plugin-graphql-component-default-example/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /examples/gatsby-plugin-graphql-component-default-example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pristas-peter/gatsby-plugin-graphql-component/HEAD/examples/gatsby-plugin-graphql-component-default-example/yarn.lock -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pristas-peter/gatsby-plugin-graphql-component/HEAD/lerna.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pristas-peter/gatsby-plugin-graphql-component/HEAD/package.json -------------------------------------------------------------------------------- /packages/gatsby-plugin-graphql-component/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pristas-peter/gatsby-plugin-graphql-component/HEAD/packages/gatsby-plugin-graphql-component/LICENSE -------------------------------------------------------------------------------- /packages/gatsby-plugin-graphql-component/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pristas-peter/gatsby-plugin-graphql-component/HEAD/packages/gatsby-plugin-graphql-component/README.md -------------------------------------------------------------------------------- /packages/gatsby-plugin-graphql-component/gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pristas-peter/gatsby-plugin-graphql-component/HEAD/packages/gatsby-plugin-graphql-component/gatsby-browser.js -------------------------------------------------------------------------------- /packages/gatsby-plugin-graphql-component/gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pristas-peter/gatsby-plugin-graphql-component/HEAD/packages/gatsby-plugin-graphql-component/gatsby-node.js -------------------------------------------------------------------------------- /packages/gatsby-plugin-graphql-component/gatsby-ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pristas-peter/gatsby-plugin-graphql-component/HEAD/packages/gatsby-plugin-graphql-component/gatsby-ssr.js -------------------------------------------------------------------------------- /packages/gatsby-plugin-graphql-component/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pristas-peter/gatsby-plugin-graphql-component/HEAD/packages/gatsby-plugin-graphql-component/index.js -------------------------------------------------------------------------------- /packages/gatsby-plugin-graphql-component/output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pristas-peter/gatsby-plugin-graphql-component/HEAD/packages/gatsby-plugin-graphql-component/output.js -------------------------------------------------------------------------------- /packages/gatsby-plugin-graphql-component/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pristas-peter/gatsby-plugin-graphql-component/HEAD/packages/gatsby-plugin-graphql-component/package.json -------------------------------------------------------------------------------- /packages/gatsby-plugin-graphql-component/static-query-babel-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pristas-peter/gatsby-plugin-graphql-component/HEAD/packages/gatsby-plugin-graphql-component/static-query-babel-plugin.js -------------------------------------------------------------------------------- /packages/gatsby-plugin-graphql-component/transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pristas-peter/gatsby-plugin-graphql-component/HEAD/packages/gatsby-plugin-graphql-component/transform.js -------------------------------------------------------------------------------- /packages/gatsby-plugin-graphql-component/visitor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pristas-peter/gatsby-plugin-graphql-component/HEAD/packages/gatsby-plugin-graphql-component/visitor.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pristas-peter/gatsby-plugin-graphql-component/HEAD/yarn.lock --------------------------------------------------------------------------------