├── .gitignore ├── LICENSE.md ├── README.md ├── __tests__ ├── __snapshots__ │ └── main.js.snap └── main.js ├── package.json ├── rmlocal.sh ├── src └── index.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile-contrib/pg-omit-archived/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile-contrib/pg-omit-archived/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/__snapshots__/main.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile-contrib/pg-omit-archived/HEAD/__tests__/__snapshots__/main.js.snap -------------------------------------------------------------------------------- /__tests__/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile-contrib/pg-omit-archived/HEAD/__tests__/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile-contrib/pg-omit-archived/HEAD/package.json -------------------------------------------------------------------------------- /rmlocal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile-contrib/pg-omit-archived/HEAD/rmlocal.sh -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile-contrib/pg-omit-archived/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile-contrib/pg-omit-archived/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile-contrib/pg-omit-archived/HEAD/yarn.lock --------------------------------------------------------------------------------