├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── src ├── index.ts ├── plugin.ts └── utils.ts ├── test ├── generated.ts ├── schema.gql └── test.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepci/garph-gqty/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepci/garph-gqty/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepci/garph-gqty/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepci/garph-gqty/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepci/garph-gqty/HEAD/src/plugin.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepci/garph-gqty/HEAD/src/utils.ts -------------------------------------------------------------------------------- /test/generated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepci/garph-gqty/HEAD/test/generated.ts -------------------------------------------------------------------------------- /test/schema.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepci/garph-gqty/HEAD/test/schema.gql -------------------------------------------------------------------------------- /test/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepci/garph-gqty/HEAD/test/test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepci/garph-gqty/HEAD/tsconfig.json --------------------------------------------------------------------------------