├── .editorconfig ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── jsconfig.json ├── package.json ├── plugin.js ├── routes.js ├── test └── hasura.test.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManUtopiK/fastify-hasura/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManUtopiK/fastify-hasura/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManUtopiK/fastify-hasura/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManUtopiK/fastify-hasura/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManUtopiK/fastify-hasura/HEAD/README.md -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManUtopiK/fastify-hasura/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManUtopiK/fastify-hasura/HEAD/package.json -------------------------------------------------------------------------------- /plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManUtopiK/fastify-hasura/HEAD/plugin.js -------------------------------------------------------------------------------- /routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManUtopiK/fastify-hasura/HEAD/routes.js -------------------------------------------------------------------------------- /test/hasura.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManUtopiK/fastify-hasura/HEAD/test/hasura.test.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManUtopiK/fastify-hasura/HEAD/yarn.lock --------------------------------------------------------------------------------