├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .prettierignore ├── LICENSE.md ├── README.md ├── package.json ├── pnpm-lock.yaml ├── src ├── index.ts └── visitor.ts ├── test ├── benchmark.mjs ├── index.test.ts └── utils │ ├── comments.gql │ ├── kitchenSink.gql │ └── language.gql └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasheyenbrock/graphql-print/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist 2 | utils/*.gql 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasheyenbrock/graphql-print/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasheyenbrock/graphql-print/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasheyenbrock/graphql-print/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasheyenbrock/graphql-print/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasheyenbrock/graphql-print/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/visitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasheyenbrock/graphql-print/HEAD/src/visitor.ts -------------------------------------------------------------------------------- /test/benchmark.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasheyenbrock/graphql-print/HEAD/test/benchmark.mjs -------------------------------------------------------------------------------- /test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasheyenbrock/graphql-print/HEAD/test/index.test.ts -------------------------------------------------------------------------------- /test/utils/comments.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasheyenbrock/graphql-print/HEAD/test/utils/comments.gql -------------------------------------------------------------------------------- /test/utils/kitchenSink.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasheyenbrock/graphql-print/HEAD/test/utils/kitchenSink.gql -------------------------------------------------------------------------------- /test/utils/language.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasheyenbrock/graphql-print/HEAD/test/utils/language.gql -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasheyenbrock/graphql-print/HEAD/tsconfig.json --------------------------------------------------------------------------------