├── .babelrc ├── .github └── workflows │ └── codacy-analysis.yml ├── .gitignore ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── cli.js ├── example ├── afterViews.sql ├── beforeViews.sql ├── docker-compose.yml ├── hasura-auto-tracker.json ├── initdb │ └── init_db.sql └── run_hat.js ├── index.d.ts ├── index.js ├── package.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axis-tech/hasura-auto-tracker/HEAD/.babelrc -------------------------------------------------------------------------------- /.github/workflows/codacy-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axis-tech/hasura-auto-tracker/HEAD/.github/workflows/codacy-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axis-tech/hasura-auto-tracker/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axis-tech/hasura-auto-tracker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axis-tech/hasura-auto-tracker/HEAD/README.md -------------------------------------------------------------------------------- /cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axis-tech/hasura-auto-tracker/HEAD/cli.js -------------------------------------------------------------------------------- /example/afterViews.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/beforeViews.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axis-tech/hasura-auto-tracker/HEAD/example/docker-compose.yml -------------------------------------------------------------------------------- /example/hasura-auto-tracker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axis-tech/hasura-auto-tracker/HEAD/example/hasura-auto-tracker.json -------------------------------------------------------------------------------- /example/initdb/init_db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axis-tech/hasura-auto-tracker/HEAD/example/initdb/init_db.sql -------------------------------------------------------------------------------- /example/run_hat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axis-tech/hasura-auto-tracker/HEAD/example/run_hat.js -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'hasura-auto-tracker'; -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axis-tech/hasura-auto-tracker/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axis-tech/hasura-auto-tracker/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axis-tech/hasura-auto-tracker/HEAD/yarn.lock --------------------------------------------------------------------------------