├── .circleci └── config.yml ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── RELEASE.md ├── make-release-notes.sh └── release-template.ejs ├── .gitignore ├── .prettierignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs ├── 01-configuration.md ├── 02-generation.md ├── 03-scaffolding-resolvers.md ├── 04-bootstrapping.md ├── README.md ├── SUMMARY.md ├── assets │ ├── view-on-github.png │ └── view-on-github.svg ├── book.json ├── package.json └── yarn.lock ├── package.json ├── packages ├── create-graphqlgen │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── loader.ts │ │ └── templates.ts │ ├── tsconfig.json │ └── tslint.json ├── graphqlgen-json-schema │ ├── README.md │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── definition.ts │ │ ├── schema.json │ │ └── tests │ │ │ ├── __snapshots__ │ │ │ └── basic.test.ts.snap │ │ │ ├── basic.test.ts │ │ │ └── fixtures │ │ │ └── basic.yml │ └── tsconfig.json ├── graphqlgen-templates │ ├── flow-yoga │ │ ├── .flowconfig │ │ ├── README.md │ │ ├── graphqlgen.yml │ │ ├── package.json │ │ ├── src │ │ │ ├── .babelrc │ │ │ ├── data.js │ │ │ ├── generated │ │ │ │ ├── graphqlgen.js │ │ │ │ └── tmp-resolvers │ │ │ │ │ ├── Mutation.js │ │ │ │ │ ├── Post.js │ │ │ │ │ ├── Query.js │ │ │ │ │ ├── User.js │ │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ ├── resolvers │ │ │ │ ├── Mutation.js │ │ │ │ ├── Post.js │ │ │ │ ├── Query.js │ │ │ │ ├── User.js │ │ │ │ └── index.js │ │ │ ├── schema.graphql │ │ │ └── types.js │ │ └── yarn.lock │ └── typescript-yoga │ │ ├── README.md │ │ ├── graphqlgen.yml │ │ ├── package.json │ │ ├── src │ │ ├── data.ts │ │ ├── generated │ │ │ ├── graphqlgen.ts │ │ │ └── tmp-resolvers │ │ │ │ ├── Mutation.ts │ │ │ │ ├── Post.ts │ │ │ │ ├── Query.ts │ │ │ │ ├── User.ts │ │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── resolvers │ │ │ ├── Mutation.ts │ │ │ ├── Post.ts │ │ │ ├── Query.ts │ │ │ ├── User.ts │ │ │ └── index.ts │ │ ├── schema.graphql │ │ └── types.ts │ │ ├── tsconfig.json │ │ └── yarn.lock └── graphqlgen │ ├── .gitignore │ ├── benchmarks │ ├── README.md │ ├── history.json │ ├── index.ts │ ├── integration │ │ ├── index.ts │ │ ├── prisma-complex │ │ │ ├── models.js │ │ │ ├── models.ts │ │ │ ├── prisma.graphql │ │ │ └── schema.graphql │ │ └── trivial │ │ │ ├── models.js │ │ │ ├── models.ts │ │ │ └── schema.graphql │ ├── lib │ │ ├── benchmark.ts │ │ └── helpers.ts │ └── micro │ │ └── index.ts │ ├── jest.config.js │ ├── package.json │ ├── src │ ├── generators │ │ ├── common.spec.ts │ │ ├── common.ts │ │ ├── flow │ │ │ ├── generator.ts │ │ │ └── scaffolder.ts │ │ ├── reason │ │ │ ├── generator.ts │ │ │ ├── reason.d.ts │ │ │ └── scaffolder.ts │ │ └── typescript │ │ │ ├── generator.ts │ │ │ └── scaffolder.ts │ ├── glob.ts │ ├── index.ts │ ├── introspection │ │ ├── factory.ts │ │ ├── flow-ast.ts │ │ ├── index.ts │ │ ├── ts-ast.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── output.ts │ ├── parse.ts │ ├── path-helpers.ts │ ├── project-output.ts │ ├── source-helper.ts │ ├── types.ts │ ├── utils.ts │ └── validation.ts │ ├── tests │ ├── fixtures │ │ ├── basic │ │ │ ├── index.ts │ │ │ ├── schema.graphql │ │ │ └── types-flow.js │ │ ├── context │ │ │ ├── flow-types.js │ │ │ ├── schema.graphql │ │ │ └── types.ts │ │ ├── defaultName │ │ │ ├── flow-types.js │ │ │ ├── index.ts │ │ │ └── schema.graphql │ │ ├── enum │ │ │ ├── schema.graphql │ │ │ ├── types-flow.js │ │ │ └── types.ts │ │ ├── input │ │ │ ├── schema.graphql │ │ │ └── types.ts │ │ ├── interface │ │ │ ├── schema.graphql │ │ │ └── types.ts │ │ ├── prisma │ │ │ ├── flow-types.js │ │ │ ├── prisma.graphql │ │ │ ├── schema.graphql │ │ │ └── types.ts │ │ ├── scalar │ │ │ ├── flow-types.js │ │ │ ├── schema.graphql │ │ │ └── types.ts │ │ ├── subscription │ │ │ ├── flow-types.js │ │ │ ├── schema.graphql │ │ │ └── types.ts │ │ └── union │ │ │ ├── flow-types.js │ │ │ ├── schema.graphql │ │ │ └── types.ts │ ├── flow │ │ ├── __snapshots__ │ │ │ ├── basic.test.ts.snap │ │ │ └── large-schema.test.ts.snap │ │ ├── basic.test.ts │ │ └── large-schema.test.ts │ ├── generation.ts │ ├── glob │ │ ├── extract-glob-pattern.test.ts │ │ ├── handle-glob-pattern.test.ts │ │ └── mocks │ │ │ ├── dir-1 │ │ │ ├── file-11.ts │ │ │ └── file-12.ts │ │ │ └── dir-2 │ │ │ ├── file-21.ts │ │ │ └── file-22.ts │ ├── introspection │ │ ├── flow.test.ts │ │ ├── mocks │ │ │ ├── flow-types.js │ │ │ └── types.ts │ │ └── typescript.test.ts │ ├── path-helpers │ │ ├── __snapshots__ │ │ │ └── index.test.ts.snap │ │ ├── index.test.ts │ │ └── mocks │ │ │ ├── dir-1 │ │ │ └── index.ts │ │ │ ├── dir-2 │ │ │ └── dir-3.ts │ │ │ └── types.ts │ ├── replaceVariables.test.ts │ ├── typescript │ │ ├── __snapshots__ │ │ │ ├── basic.test.ts.snap │ │ │ └── large-schema.test.ts.snap │ │ ├── basic.test.ts │ │ └── large-schema.test.ts │ └── validation │ │ ├── mocks │ │ ├── gqlSchema │ │ │ ├── model.ts │ │ │ ├── schema.ts │ │ │ └── types.ts │ │ ├── missingModels │ │ │ ├── index.ts │ │ │ └── schema.graphql │ │ ├── overridenModel │ │ │ ├── model.ts │ │ │ ├── schema.graphql │ │ │ └── types.ts │ │ ├── tsSchemaConst │ │ │ ├── model.ts │ │ │ ├── schema.ts │ │ │ └── types.ts │ │ └── tsSchemaDefault │ │ │ ├── model.ts │ │ │ ├── schema.ts │ │ │ └── types.ts │ │ ├── validateDefinition.test.ts │ │ └── validateModels.test.ts │ ├── tsconfig.json │ └── yarn.lock ├── renovate.json └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/.github/RELEASE.md -------------------------------------------------------------------------------- /.github/make-release-notes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/.github/make-release-notes.sh -------------------------------------------------------------------------------- /.github/release-template.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/.github/release-template.ejs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist 2 | .github 3 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/README.md -------------------------------------------------------------------------------- /docs/01-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/docs/01-configuration.md -------------------------------------------------------------------------------- /docs/02-generation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/docs/02-generation.md -------------------------------------------------------------------------------- /docs/03-scaffolding-resolvers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/docs/03-scaffolding-resolvers.md -------------------------------------------------------------------------------- /docs/04-bootstrapping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/docs/04-bootstrapping.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/docs/SUMMARY.md -------------------------------------------------------------------------------- /docs/assets/view-on-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/docs/assets/view-on-github.png -------------------------------------------------------------------------------- /docs/assets/view-on-github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/docs/assets/view-on-github.svg -------------------------------------------------------------------------------- /docs/book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/docs/book.json -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/docs/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/package.json -------------------------------------------------------------------------------- /packages/create-graphqlgen/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/create-graphqlgen/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/create-graphqlgen/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/create-graphqlgen/package.json -------------------------------------------------------------------------------- /packages/create-graphqlgen/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/create-graphqlgen/src/index.ts -------------------------------------------------------------------------------- /packages/create-graphqlgen/src/loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/create-graphqlgen/src/loader.ts -------------------------------------------------------------------------------- /packages/create-graphqlgen/src/templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/create-graphqlgen/src/templates.ts -------------------------------------------------------------------------------- /packages/create-graphqlgen/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/create-graphqlgen/tsconfig.json -------------------------------------------------------------------------------- /packages/create-graphqlgen/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/create-graphqlgen/tslint.json -------------------------------------------------------------------------------- /packages/graphqlgen-json-schema/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/graphqlgen-json-schema/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-json-schema/jest.config.js -------------------------------------------------------------------------------- /packages/graphqlgen-json-schema/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-json-schema/package.json -------------------------------------------------------------------------------- /packages/graphqlgen-json-schema/src/definition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-json-schema/src/definition.ts -------------------------------------------------------------------------------- /packages/graphqlgen-json-schema/src/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-json-schema/src/schema.json -------------------------------------------------------------------------------- /packages/graphqlgen-json-schema/src/tests/__snapshots__/basic.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-json-schema/src/tests/__snapshots__/basic.test.ts.snap -------------------------------------------------------------------------------- /packages/graphqlgen-json-schema/src/tests/basic.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-json-schema/src/tests/basic.test.ts -------------------------------------------------------------------------------- /packages/graphqlgen-json-schema/src/tests/fixtures/basic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-json-schema/src/tests/fixtures/basic.yml -------------------------------------------------------------------------------- /packages/graphqlgen-json-schema/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-json-schema/tsconfig.json -------------------------------------------------------------------------------- /packages/graphqlgen-templates/flow-yoga/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-templates/flow-yoga/.flowconfig -------------------------------------------------------------------------------- /packages/graphqlgen-templates/flow-yoga/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/graphqlgen-templates/flow-yoga/graphqlgen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-templates/flow-yoga/graphqlgen.yml -------------------------------------------------------------------------------- /packages/graphqlgen-templates/flow-yoga/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-templates/flow-yoga/package.json -------------------------------------------------------------------------------- /packages/graphqlgen-templates/flow-yoga/src/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-templates/flow-yoga/src/.babelrc -------------------------------------------------------------------------------- /packages/graphqlgen-templates/flow-yoga/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-templates/flow-yoga/src/data.js -------------------------------------------------------------------------------- /packages/graphqlgen-templates/flow-yoga/src/generated/graphqlgen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-templates/flow-yoga/src/generated/graphqlgen.js -------------------------------------------------------------------------------- /packages/graphqlgen-templates/flow-yoga/src/generated/tmp-resolvers/Mutation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-templates/flow-yoga/src/generated/tmp-resolvers/Mutation.js -------------------------------------------------------------------------------- /packages/graphqlgen-templates/flow-yoga/src/generated/tmp-resolvers/Post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-templates/flow-yoga/src/generated/tmp-resolvers/Post.js -------------------------------------------------------------------------------- /packages/graphqlgen-templates/flow-yoga/src/generated/tmp-resolvers/Query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-templates/flow-yoga/src/generated/tmp-resolvers/Query.js -------------------------------------------------------------------------------- /packages/graphqlgen-templates/flow-yoga/src/generated/tmp-resolvers/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-templates/flow-yoga/src/generated/tmp-resolvers/User.js -------------------------------------------------------------------------------- /packages/graphqlgen-templates/flow-yoga/src/generated/tmp-resolvers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-templates/flow-yoga/src/generated/tmp-resolvers/index.js -------------------------------------------------------------------------------- /packages/graphqlgen-templates/flow-yoga/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-templates/flow-yoga/src/index.js -------------------------------------------------------------------------------- /packages/graphqlgen-templates/flow-yoga/src/resolvers/Mutation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-templates/flow-yoga/src/resolvers/Mutation.js -------------------------------------------------------------------------------- /packages/graphqlgen-templates/flow-yoga/src/resolvers/Post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-templates/flow-yoga/src/resolvers/Post.js -------------------------------------------------------------------------------- /packages/graphqlgen-templates/flow-yoga/src/resolvers/Query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-templates/flow-yoga/src/resolvers/Query.js -------------------------------------------------------------------------------- /packages/graphqlgen-templates/flow-yoga/src/resolvers/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-templates/flow-yoga/src/resolvers/User.js -------------------------------------------------------------------------------- /packages/graphqlgen-templates/flow-yoga/src/resolvers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-templates/flow-yoga/src/resolvers/index.js -------------------------------------------------------------------------------- /packages/graphqlgen-templates/flow-yoga/src/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-templates/flow-yoga/src/schema.graphql -------------------------------------------------------------------------------- /packages/graphqlgen-templates/flow-yoga/src/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-templates/flow-yoga/src/types.js -------------------------------------------------------------------------------- /packages/graphqlgen-templates/flow-yoga/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-templates/flow-yoga/yarn.lock -------------------------------------------------------------------------------- /packages/graphqlgen-templates/typescript-yoga/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/graphqlgen-templates/typescript-yoga/graphqlgen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-templates/typescript-yoga/graphqlgen.yml -------------------------------------------------------------------------------- /packages/graphqlgen-templates/typescript-yoga/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-templates/typescript-yoga/package.json -------------------------------------------------------------------------------- /packages/graphqlgen-templates/typescript-yoga/src/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-templates/typescript-yoga/src/data.ts -------------------------------------------------------------------------------- /packages/graphqlgen-templates/typescript-yoga/src/generated/graphqlgen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-templates/typescript-yoga/src/generated/graphqlgen.ts -------------------------------------------------------------------------------- /packages/graphqlgen-templates/typescript-yoga/src/generated/tmp-resolvers/Mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-templates/typescript-yoga/src/generated/tmp-resolvers/Mutation.ts -------------------------------------------------------------------------------- /packages/graphqlgen-templates/typescript-yoga/src/generated/tmp-resolvers/Post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-templates/typescript-yoga/src/generated/tmp-resolvers/Post.ts -------------------------------------------------------------------------------- /packages/graphqlgen-templates/typescript-yoga/src/generated/tmp-resolvers/Query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-templates/typescript-yoga/src/generated/tmp-resolvers/Query.ts -------------------------------------------------------------------------------- /packages/graphqlgen-templates/typescript-yoga/src/generated/tmp-resolvers/User.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-templates/typescript-yoga/src/generated/tmp-resolvers/User.ts -------------------------------------------------------------------------------- /packages/graphqlgen-templates/typescript-yoga/src/generated/tmp-resolvers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-templates/typescript-yoga/src/generated/tmp-resolvers/index.ts -------------------------------------------------------------------------------- /packages/graphqlgen-templates/typescript-yoga/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-templates/typescript-yoga/src/index.ts -------------------------------------------------------------------------------- /packages/graphqlgen-templates/typescript-yoga/src/resolvers/Mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-templates/typescript-yoga/src/resolvers/Mutation.ts -------------------------------------------------------------------------------- /packages/graphqlgen-templates/typescript-yoga/src/resolvers/Post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-templates/typescript-yoga/src/resolvers/Post.ts -------------------------------------------------------------------------------- /packages/graphqlgen-templates/typescript-yoga/src/resolvers/Query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-templates/typescript-yoga/src/resolvers/Query.ts -------------------------------------------------------------------------------- /packages/graphqlgen-templates/typescript-yoga/src/resolvers/User.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-templates/typescript-yoga/src/resolvers/User.ts -------------------------------------------------------------------------------- /packages/graphqlgen-templates/typescript-yoga/src/resolvers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-templates/typescript-yoga/src/resolvers/index.ts -------------------------------------------------------------------------------- /packages/graphqlgen-templates/typescript-yoga/src/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-templates/typescript-yoga/src/schema.graphql -------------------------------------------------------------------------------- /packages/graphqlgen-templates/typescript-yoga/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-templates/typescript-yoga/src/types.ts -------------------------------------------------------------------------------- /packages/graphqlgen-templates/typescript-yoga/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-templates/typescript-yoga/tsconfig.json -------------------------------------------------------------------------------- /packages/graphqlgen-templates/typescript-yoga/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen-templates/typescript-yoga/yarn.lock -------------------------------------------------------------------------------- /packages/graphqlgen/.gitignore: -------------------------------------------------------------------------------- 1 | src/**/generated -------------------------------------------------------------------------------- /packages/graphqlgen/benchmarks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/benchmarks/README.md -------------------------------------------------------------------------------- /packages/graphqlgen/benchmarks/history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/benchmarks/history.json -------------------------------------------------------------------------------- /packages/graphqlgen/benchmarks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/benchmarks/index.ts -------------------------------------------------------------------------------- /packages/graphqlgen/benchmarks/integration/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/benchmarks/integration/index.ts -------------------------------------------------------------------------------- /packages/graphqlgen/benchmarks/integration/prisma-complex/models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/benchmarks/integration/prisma-complex/models.js -------------------------------------------------------------------------------- /packages/graphqlgen/benchmarks/integration/prisma-complex/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/benchmarks/integration/prisma-complex/models.ts -------------------------------------------------------------------------------- /packages/graphqlgen/benchmarks/integration/prisma-complex/prisma.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/benchmarks/integration/prisma-complex/prisma.graphql -------------------------------------------------------------------------------- /packages/graphqlgen/benchmarks/integration/prisma-complex/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/benchmarks/integration/prisma-complex/schema.graphql -------------------------------------------------------------------------------- /packages/graphqlgen/benchmarks/integration/trivial/models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/benchmarks/integration/trivial/models.js -------------------------------------------------------------------------------- /packages/graphqlgen/benchmarks/integration/trivial/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/benchmarks/integration/trivial/models.ts -------------------------------------------------------------------------------- /packages/graphqlgen/benchmarks/integration/trivial/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/benchmarks/integration/trivial/schema.graphql -------------------------------------------------------------------------------- /packages/graphqlgen/benchmarks/lib/benchmark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/benchmarks/lib/benchmark.ts -------------------------------------------------------------------------------- /packages/graphqlgen/benchmarks/lib/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/benchmarks/lib/helpers.ts -------------------------------------------------------------------------------- /packages/graphqlgen/benchmarks/micro/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/benchmarks/micro/index.ts -------------------------------------------------------------------------------- /packages/graphqlgen/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/jest.config.js -------------------------------------------------------------------------------- /packages/graphqlgen/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/package.json -------------------------------------------------------------------------------- /packages/graphqlgen/src/generators/common.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/src/generators/common.spec.ts -------------------------------------------------------------------------------- /packages/graphqlgen/src/generators/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/src/generators/common.ts -------------------------------------------------------------------------------- /packages/graphqlgen/src/generators/flow/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/src/generators/flow/generator.ts -------------------------------------------------------------------------------- /packages/graphqlgen/src/generators/flow/scaffolder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/src/generators/flow/scaffolder.ts -------------------------------------------------------------------------------- /packages/graphqlgen/src/generators/reason/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/src/generators/reason/generator.ts -------------------------------------------------------------------------------- /packages/graphqlgen/src/generators/reason/reason.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/src/generators/reason/reason.d.ts -------------------------------------------------------------------------------- /packages/graphqlgen/src/generators/reason/scaffolder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/src/generators/reason/scaffolder.ts -------------------------------------------------------------------------------- /packages/graphqlgen/src/generators/typescript/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/src/generators/typescript/generator.ts -------------------------------------------------------------------------------- /packages/graphqlgen/src/generators/typescript/scaffolder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/src/generators/typescript/scaffolder.ts -------------------------------------------------------------------------------- /packages/graphqlgen/src/glob.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/src/glob.ts -------------------------------------------------------------------------------- /packages/graphqlgen/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/src/index.ts -------------------------------------------------------------------------------- /packages/graphqlgen/src/introspection/factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/src/introspection/factory.ts -------------------------------------------------------------------------------- /packages/graphqlgen/src/introspection/flow-ast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/src/introspection/flow-ast.ts -------------------------------------------------------------------------------- /packages/graphqlgen/src/introspection/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/src/introspection/index.ts -------------------------------------------------------------------------------- /packages/graphqlgen/src/introspection/ts-ast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/src/introspection/ts-ast.ts -------------------------------------------------------------------------------- /packages/graphqlgen/src/introspection/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/src/introspection/types.ts -------------------------------------------------------------------------------- /packages/graphqlgen/src/introspection/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/src/introspection/utils.ts -------------------------------------------------------------------------------- /packages/graphqlgen/src/output.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/src/output.ts -------------------------------------------------------------------------------- /packages/graphqlgen/src/parse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/src/parse.ts -------------------------------------------------------------------------------- /packages/graphqlgen/src/path-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/src/path-helpers.ts -------------------------------------------------------------------------------- /packages/graphqlgen/src/project-output.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/src/project-output.ts -------------------------------------------------------------------------------- /packages/graphqlgen/src/source-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/src/source-helper.ts -------------------------------------------------------------------------------- /packages/graphqlgen/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/src/types.ts -------------------------------------------------------------------------------- /packages/graphqlgen/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/src/utils.ts -------------------------------------------------------------------------------- /packages/graphqlgen/src/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/src/validation.ts -------------------------------------------------------------------------------- /packages/graphqlgen/tests/fixtures/basic/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/fixtures/basic/index.ts -------------------------------------------------------------------------------- /packages/graphqlgen/tests/fixtures/basic/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/fixtures/basic/schema.graphql -------------------------------------------------------------------------------- /packages/graphqlgen/tests/fixtures/basic/types-flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/fixtures/basic/types-flow.js -------------------------------------------------------------------------------- /packages/graphqlgen/tests/fixtures/context/flow-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/fixtures/context/flow-types.js -------------------------------------------------------------------------------- /packages/graphqlgen/tests/fixtures/context/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/fixtures/context/schema.graphql -------------------------------------------------------------------------------- /packages/graphqlgen/tests/fixtures/context/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/fixtures/context/types.ts -------------------------------------------------------------------------------- /packages/graphqlgen/tests/fixtures/defaultName/flow-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/fixtures/defaultName/flow-types.js -------------------------------------------------------------------------------- /packages/graphqlgen/tests/fixtures/defaultName/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/fixtures/defaultName/index.ts -------------------------------------------------------------------------------- /packages/graphqlgen/tests/fixtures/defaultName/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/fixtures/defaultName/schema.graphql -------------------------------------------------------------------------------- /packages/graphqlgen/tests/fixtures/enum/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/fixtures/enum/schema.graphql -------------------------------------------------------------------------------- /packages/graphqlgen/tests/fixtures/enum/types-flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/fixtures/enum/types-flow.js -------------------------------------------------------------------------------- /packages/graphqlgen/tests/fixtures/enum/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/fixtures/enum/types.ts -------------------------------------------------------------------------------- /packages/graphqlgen/tests/fixtures/input/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/fixtures/input/schema.graphql -------------------------------------------------------------------------------- /packages/graphqlgen/tests/fixtures/input/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/fixtures/input/types.ts -------------------------------------------------------------------------------- /packages/graphqlgen/tests/fixtures/interface/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/fixtures/interface/schema.graphql -------------------------------------------------------------------------------- /packages/graphqlgen/tests/fixtures/interface/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/fixtures/interface/types.ts -------------------------------------------------------------------------------- /packages/graphqlgen/tests/fixtures/prisma/flow-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/fixtures/prisma/flow-types.js -------------------------------------------------------------------------------- /packages/graphqlgen/tests/fixtures/prisma/prisma.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/fixtures/prisma/prisma.graphql -------------------------------------------------------------------------------- /packages/graphqlgen/tests/fixtures/prisma/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/fixtures/prisma/schema.graphql -------------------------------------------------------------------------------- /packages/graphqlgen/tests/fixtures/prisma/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/fixtures/prisma/types.ts -------------------------------------------------------------------------------- /packages/graphqlgen/tests/fixtures/scalar/flow-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/fixtures/scalar/flow-types.js -------------------------------------------------------------------------------- /packages/graphqlgen/tests/fixtures/scalar/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/fixtures/scalar/schema.graphql -------------------------------------------------------------------------------- /packages/graphqlgen/tests/fixtures/scalar/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/fixtures/scalar/types.ts -------------------------------------------------------------------------------- /packages/graphqlgen/tests/fixtures/subscription/flow-types.js: -------------------------------------------------------------------------------- 1 | export interface User { 2 | name: string; 3 | } 4 | -------------------------------------------------------------------------------- /packages/graphqlgen/tests/fixtures/subscription/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/fixtures/subscription/schema.graphql -------------------------------------------------------------------------------- /packages/graphqlgen/tests/fixtures/subscription/types.ts: -------------------------------------------------------------------------------- 1 | export interface User { 2 | name: string 3 | } 4 | -------------------------------------------------------------------------------- /packages/graphqlgen/tests/fixtures/union/flow-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/fixtures/union/flow-types.js -------------------------------------------------------------------------------- /packages/graphqlgen/tests/fixtures/union/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/fixtures/union/schema.graphql -------------------------------------------------------------------------------- /packages/graphqlgen/tests/fixtures/union/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/fixtures/union/types.ts -------------------------------------------------------------------------------- /packages/graphqlgen/tests/flow/__snapshots__/basic.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/flow/__snapshots__/basic.test.ts.snap -------------------------------------------------------------------------------- /packages/graphqlgen/tests/flow/__snapshots__/large-schema.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/flow/__snapshots__/large-schema.test.ts.snap -------------------------------------------------------------------------------- /packages/graphqlgen/tests/flow/basic.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/flow/basic.test.ts -------------------------------------------------------------------------------- /packages/graphqlgen/tests/flow/large-schema.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/flow/large-schema.test.ts -------------------------------------------------------------------------------- /packages/graphqlgen/tests/generation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/generation.ts -------------------------------------------------------------------------------- /packages/graphqlgen/tests/glob/extract-glob-pattern.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/glob/extract-glob-pattern.test.ts -------------------------------------------------------------------------------- /packages/graphqlgen/tests/glob/handle-glob-pattern.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/glob/handle-glob-pattern.test.ts -------------------------------------------------------------------------------- /packages/graphqlgen/tests/glob/mocks/dir-1/file-11.ts: -------------------------------------------------------------------------------- 1 | // Empty 2 | -------------------------------------------------------------------------------- /packages/graphqlgen/tests/glob/mocks/dir-1/file-12.ts: -------------------------------------------------------------------------------- 1 | // Empty 2 | -------------------------------------------------------------------------------- /packages/graphqlgen/tests/glob/mocks/dir-2/file-21.ts: -------------------------------------------------------------------------------- 1 | // Empty 2 | -------------------------------------------------------------------------------- /packages/graphqlgen/tests/glob/mocks/dir-2/file-22.ts: -------------------------------------------------------------------------------- 1 | // Empty 2 | -------------------------------------------------------------------------------- /packages/graphqlgen/tests/introspection/flow.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/introspection/flow.test.ts -------------------------------------------------------------------------------- /packages/graphqlgen/tests/introspection/mocks/flow-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/introspection/mocks/flow-types.js -------------------------------------------------------------------------------- /packages/graphqlgen/tests/introspection/mocks/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/introspection/mocks/types.ts -------------------------------------------------------------------------------- /packages/graphqlgen/tests/introspection/typescript.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/introspection/typescript.test.ts -------------------------------------------------------------------------------- /packages/graphqlgen/tests/path-helpers/__snapshots__/index.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/path-helpers/__snapshots__/index.test.ts.snap -------------------------------------------------------------------------------- /packages/graphqlgen/tests/path-helpers/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/path-helpers/index.test.ts -------------------------------------------------------------------------------- /packages/graphqlgen/tests/path-helpers/mocks/dir-1/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/graphqlgen/tests/path-helpers/mocks/dir-2/dir-3.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/graphqlgen/tests/path-helpers/mocks/types.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/graphqlgen/tests/replaceVariables.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/replaceVariables.test.ts -------------------------------------------------------------------------------- /packages/graphqlgen/tests/typescript/__snapshots__/basic.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/typescript/__snapshots__/basic.test.ts.snap -------------------------------------------------------------------------------- /packages/graphqlgen/tests/typescript/__snapshots__/large-schema.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/typescript/__snapshots__/large-schema.test.ts.snap -------------------------------------------------------------------------------- /packages/graphqlgen/tests/typescript/basic.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/typescript/basic.test.ts -------------------------------------------------------------------------------- /packages/graphqlgen/tests/typescript/large-schema.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/typescript/large-schema.test.ts -------------------------------------------------------------------------------- /packages/graphqlgen/tests/validation/mocks/gqlSchema/model.ts: -------------------------------------------------------------------------------- 1 | interface PostModel { 2 | id: string 3 | } 4 | -------------------------------------------------------------------------------- /packages/graphqlgen/tests/validation/mocks/gqlSchema/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/validation/mocks/gqlSchema/schema.ts -------------------------------------------------------------------------------- /packages/graphqlgen/tests/validation/mocks/gqlSchema/types.ts: -------------------------------------------------------------------------------- 1 | interface User { 2 | id: string 3 | } 4 | -------------------------------------------------------------------------------- /packages/graphqlgen/tests/validation/mocks/missingModels/index.ts: -------------------------------------------------------------------------------- 1 | interface User { 2 | id: string 3 | } 4 | -------------------------------------------------------------------------------- /packages/graphqlgen/tests/validation/mocks/missingModels/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/validation/mocks/missingModels/schema.graphql -------------------------------------------------------------------------------- /packages/graphqlgen/tests/validation/mocks/overridenModel/model.ts: -------------------------------------------------------------------------------- 1 | interface PostModel { 2 | id: string 3 | } 4 | -------------------------------------------------------------------------------- /packages/graphqlgen/tests/validation/mocks/overridenModel/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/validation/mocks/overridenModel/schema.graphql -------------------------------------------------------------------------------- /packages/graphqlgen/tests/validation/mocks/overridenModel/types.ts: -------------------------------------------------------------------------------- 1 | interface User { 2 | id: string 3 | } 4 | -------------------------------------------------------------------------------- /packages/graphqlgen/tests/validation/mocks/tsSchemaConst/model.ts: -------------------------------------------------------------------------------- 1 | interface PostModel { 2 | id: string 3 | } 4 | -------------------------------------------------------------------------------- /packages/graphqlgen/tests/validation/mocks/tsSchemaConst/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/validation/mocks/tsSchemaConst/schema.ts -------------------------------------------------------------------------------- /packages/graphqlgen/tests/validation/mocks/tsSchemaConst/types.ts: -------------------------------------------------------------------------------- 1 | interface User { 2 | id: string 3 | } 4 | -------------------------------------------------------------------------------- /packages/graphqlgen/tests/validation/mocks/tsSchemaDefault/model.ts: -------------------------------------------------------------------------------- 1 | interface PostModel { 2 | id: string 3 | } 4 | -------------------------------------------------------------------------------- /packages/graphqlgen/tests/validation/mocks/tsSchemaDefault/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/validation/mocks/tsSchemaDefault/schema.ts -------------------------------------------------------------------------------- /packages/graphqlgen/tests/validation/mocks/tsSchemaDefault/types.ts: -------------------------------------------------------------------------------- 1 | interface User { 2 | id: string 3 | } 4 | -------------------------------------------------------------------------------- /packages/graphqlgen/tests/validation/validateDefinition.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/validation/validateDefinition.test.ts -------------------------------------------------------------------------------- /packages/graphqlgen/tests/validation/validateModels.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tests/validation/validateModels.test.ts -------------------------------------------------------------------------------- /packages/graphqlgen/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/tsconfig.json -------------------------------------------------------------------------------- /packages/graphqlgen/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/packages/graphqlgen/yarn.lock -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/renovate.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/graphqlgen/HEAD/yarn.lock --------------------------------------------------------------------------------