├── .circleci └── config.yml ├── .gitignore ├── .npmignore ├── .nvmrc ├── .prettierrc.js ├── .yarn ├── plugins │ └── @yarnpkg │ │ └── plugin-interactive-tools.cjs └── releases │ └── yarn-3.6.3.cjs ├── .yarnrc.yml ├── README.markdown ├── bump.sh ├── integration ├── graphql-codegen-types-separate.yml ├── graphql-codegen-with-enum-mapping.yml ├── graphql-codegen.yml ├── graphql-type-factories.ts ├── graphql-types-and-factories-with-enum-mapping.ts ├── graphql-types-and-factories.ts ├── graphql-types-only.ts ├── integration.test.ts ├── schema.graphql ├── testData.ts └── tsconfig.json ├── jest.config.js ├── package.json ├── src └── index.ts ├── tsconfig.json └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebound-team/graphql-typescript-factories/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebound-team/graphql-typescript-factories/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebound-team/graphql-typescript-factories/HEAD/.npmignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20.9.0 2 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | trailingComma: "all", 3 | printWidth: 120, 4 | }; 5 | -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebound-team/graphql-typescript-factories/HEAD/.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.6.3.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebound-team/graphql-typescript-factories/HEAD/.yarn/releases/yarn-3.6.3.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebound-team/graphql-typescript-factories/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebound-team/graphql-typescript-factories/HEAD/README.markdown -------------------------------------------------------------------------------- /bump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebound-team/graphql-typescript-factories/HEAD/bump.sh -------------------------------------------------------------------------------- /integration/graphql-codegen-types-separate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebound-team/graphql-typescript-factories/HEAD/integration/graphql-codegen-types-separate.yml -------------------------------------------------------------------------------- /integration/graphql-codegen-with-enum-mapping.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebound-team/graphql-typescript-factories/HEAD/integration/graphql-codegen-with-enum-mapping.yml -------------------------------------------------------------------------------- /integration/graphql-codegen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebound-team/graphql-typescript-factories/HEAD/integration/graphql-codegen.yml -------------------------------------------------------------------------------- /integration/graphql-type-factories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebound-team/graphql-typescript-factories/HEAD/integration/graphql-type-factories.ts -------------------------------------------------------------------------------- /integration/graphql-types-and-factories-with-enum-mapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebound-team/graphql-typescript-factories/HEAD/integration/graphql-types-and-factories-with-enum-mapping.ts -------------------------------------------------------------------------------- /integration/graphql-types-and-factories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebound-team/graphql-typescript-factories/HEAD/integration/graphql-types-and-factories.ts -------------------------------------------------------------------------------- /integration/graphql-types-only.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebound-team/graphql-typescript-factories/HEAD/integration/graphql-types-only.ts -------------------------------------------------------------------------------- /integration/integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebound-team/graphql-typescript-factories/HEAD/integration/integration.test.ts -------------------------------------------------------------------------------- /integration/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebound-team/graphql-typescript-factories/HEAD/integration/schema.graphql -------------------------------------------------------------------------------- /integration/testData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebound-team/graphql-typescript-factories/HEAD/integration/testData.ts -------------------------------------------------------------------------------- /integration/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebound-team/graphql-typescript-factories/HEAD/integration/tsconfig.json -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebound-team/graphql-typescript-factories/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebound-team/graphql-typescript-factories/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebound-team/graphql-typescript-factories/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebound-team/graphql-typescript-factories/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebound-team/graphql-typescript-factories/HEAD/yarn.lock --------------------------------------------------------------------------------