├── .dockerignore ├── .env.example ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── feature-enhancement-request.md │ └── other-issue.md └── workflows │ ├── bench.yml │ └── ci.yml ├── .gitignore ├── .husky └── pre-commit ├── .prettierignore ├── .prettierrc ├── .vscode └── launch.json ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── Insomnia.json ├── LICENSE ├── README.md ├── benchmark └── composed-schema.js ├── docker-compose.yml ├── docs ├── api.md ├── auth.md ├── logo-standalone.png ├── logo-usecases.png └── terminology.png ├── examples ├── apollo-federation │ ├── README.md │ ├── accounts.js │ ├── gateway.js │ ├── inventory.js │ ├── jsconfig.json │ ├── package-lock.json │ ├── package.json │ ├── products.js │ └── reviews.js ├── apollo-managed-federation │ ├── README.md │ ├── accounts.js │ ├── gateway.js │ ├── inventory.js │ ├── jsconfig.json │ ├── package-lock.json │ ├── package.json │ ├── products.js │ └── reviews.js └── mercurius-federation │ ├── README.md │ ├── accounts.js │ ├── gateway.js │ ├── inventory.js │ ├── jsconfig.json │ ├── package-lock.json │ ├── package.json │ ├── products.js │ └── reviews.js ├── package.json ├── scripts ├── build-push.sh └── wait-for-healthy-container.sh ├── src ├── build-server.ts ├── core │ ├── basic-auth.test.ts │ ├── basic-auth.ts │ ├── constants.ts │ ├── env.schema.ts │ ├── errors.ts │ ├── federation.ts │ ├── graphql-utils.ts │ ├── health.test.ts │ ├── health.ts │ ├── hook-handler │ │ └── user-scope.prevalidation.ts │ ├── jwt-auth.ts │ ├── knex-plugin.ts │ ├── manager │ │ └── SchemaManager.ts │ ├── models │ │ ├── graphModel.ts │ │ ├── schemaModel.ts │ │ ├── schemaTagModel.ts │ │ └── serviceModel.ts │ ├── repositories │ │ ├── GraphRepository.ts │ │ ├── SchemaRepository.ts │ │ ├── SchemaTagRepository.ts │ │ └── ServiceRepository.ts │ ├── shared-schemas.ts │ ├── test-util.ts │ ├── types.ts │ ├── util.ts │ └── validator-plugin.ts ├── index.ts ├── knexfile.ts ├── migrations │ └── 20210504193054_initial_schema.ts └── registry │ ├── document-validation │ ├── document-validation.test.ts │ └── document-validation.ts │ ├── federation │ ├── compose-schema-versions.test.ts │ ├── compose-schema-versions.ts │ ├── compose-schema.test.ts │ ├── compose-schema.ts │ ├── deactivate-schema.test.ts │ ├── deactivate-schema.ts │ ├── list-graphs.test.ts │ ├── list-graphs.ts │ ├── register-schema.test.ts │ ├── register-schema.ts │ ├── supergraph-schema.test.ts │ ├── supergraph-schema.test.ts.md │ ├── supergraph-schema.test.ts.md.3648652584 │ ├── supergraph-schema.test.ts.snap │ └── supergraph-schema.ts │ ├── index.ts │ ├── maintanance │ ├── garbage-collect.test.ts │ └── garbage-collect.ts │ └── schema-validation │ ├── schema-check.test.ts │ ├── schema-check.ts │ ├── schema-coverage.test.ts │ ├── schema-coverage.ts │ ├── schema-validation.test.ts │ └── schema-validation.ts └── tsconfig.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/.env.example -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-enhancement-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/.github/ISSUE_TEMPLATE/feature-enhancement-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/.github/ISSUE_TEMPLATE/other-issue.md -------------------------------------------------------------------------------- /.github/workflows/bench.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/.github/workflows/bench.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | node_modules/ 3 | /.nyc_output 4 | coverage 5 | .env -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | coverage 2 | .nyc_output 3 | dist 4 | insomnia.json -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/Dockerfile -------------------------------------------------------------------------------- /Insomnia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/Insomnia.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/README.md -------------------------------------------------------------------------------- /benchmark/composed-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/benchmark/composed-schema.js -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/docs/auth.md -------------------------------------------------------------------------------- /docs/logo-standalone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/docs/logo-standalone.png -------------------------------------------------------------------------------- /docs/logo-usecases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/docs/logo-usecases.png -------------------------------------------------------------------------------- /docs/terminology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/docs/terminology.png -------------------------------------------------------------------------------- /examples/apollo-federation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/examples/apollo-federation/README.md -------------------------------------------------------------------------------- /examples/apollo-federation/accounts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/examples/apollo-federation/accounts.js -------------------------------------------------------------------------------- /examples/apollo-federation/gateway.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/examples/apollo-federation/gateway.js -------------------------------------------------------------------------------- /examples/apollo-federation/inventory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/examples/apollo-federation/inventory.js -------------------------------------------------------------------------------- /examples/apollo-federation/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/examples/apollo-federation/jsconfig.json -------------------------------------------------------------------------------- /examples/apollo-federation/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/examples/apollo-federation/package-lock.json -------------------------------------------------------------------------------- /examples/apollo-federation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/examples/apollo-federation/package.json -------------------------------------------------------------------------------- /examples/apollo-federation/products.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/examples/apollo-federation/products.js -------------------------------------------------------------------------------- /examples/apollo-federation/reviews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/examples/apollo-federation/reviews.js -------------------------------------------------------------------------------- /examples/apollo-managed-federation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/examples/apollo-managed-federation/README.md -------------------------------------------------------------------------------- /examples/apollo-managed-federation/accounts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/examples/apollo-managed-federation/accounts.js -------------------------------------------------------------------------------- /examples/apollo-managed-federation/gateway.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/examples/apollo-managed-federation/gateway.js -------------------------------------------------------------------------------- /examples/apollo-managed-federation/inventory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/examples/apollo-managed-federation/inventory.js -------------------------------------------------------------------------------- /examples/apollo-managed-federation/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/examples/apollo-managed-federation/jsconfig.json -------------------------------------------------------------------------------- /examples/apollo-managed-federation/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/examples/apollo-managed-federation/package-lock.json -------------------------------------------------------------------------------- /examples/apollo-managed-federation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/examples/apollo-managed-federation/package.json -------------------------------------------------------------------------------- /examples/apollo-managed-federation/products.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/examples/apollo-managed-federation/products.js -------------------------------------------------------------------------------- /examples/apollo-managed-federation/reviews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/examples/apollo-managed-federation/reviews.js -------------------------------------------------------------------------------- /examples/mercurius-federation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/examples/mercurius-federation/README.md -------------------------------------------------------------------------------- /examples/mercurius-federation/accounts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/examples/mercurius-federation/accounts.js -------------------------------------------------------------------------------- /examples/mercurius-federation/gateway.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/examples/mercurius-federation/gateway.js -------------------------------------------------------------------------------- /examples/mercurius-federation/inventory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/examples/mercurius-federation/inventory.js -------------------------------------------------------------------------------- /examples/mercurius-federation/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/examples/mercurius-federation/jsconfig.json -------------------------------------------------------------------------------- /examples/mercurius-federation/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/examples/mercurius-federation/package-lock.json -------------------------------------------------------------------------------- /examples/mercurius-federation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/examples/mercurius-federation/package.json -------------------------------------------------------------------------------- /examples/mercurius-federation/products.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/examples/mercurius-federation/products.js -------------------------------------------------------------------------------- /examples/mercurius-federation/reviews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/examples/mercurius-federation/reviews.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/package.json -------------------------------------------------------------------------------- /scripts/build-push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/scripts/build-push.sh -------------------------------------------------------------------------------- /scripts/wait-for-healthy-container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/scripts/wait-for-healthy-container.sh -------------------------------------------------------------------------------- /src/build-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/build-server.ts -------------------------------------------------------------------------------- /src/core/basic-auth.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/core/basic-auth.test.ts -------------------------------------------------------------------------------- /src/core/basic-auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/core/basic-auth.ts -------------------------------------------------------------------------------- /src/core/constants.ts: -------------------------------------------------------------------------------- 1 | export const CURRENT_VERSION = 'current' 2 | -------------------------------------------------------------------------------- /src/core/env.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/core/env.schema.ts -------------------------------------------------------------------------------- /src/core/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/core/errors.ts -------------------------------------------------------------------------------- /src/core/federation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/core/federation.ts -------------------------------------------------------------------------------- /src/core/graphql-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/core/graphql-utils.ts -------------------------------------------------------------------------------- /src/core/health.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/core/health.test.ts -------------------------------------------------------------------------------- /src/core/health.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/core/health.ts -------------------------------------------------------------------------------- /src/core/hook-handler/user-scope.prevalidation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/core/hook-handler/user-scope.prevalidation.ts -------------------------------------------------------------------------------- /src/core/jwt-auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/core/jwt-auth.ts -------------------------------------------------------------------------------- /src/core/knex-plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/core/knex-plugin.ts -------------------------------------------------------------------------------- /src/core/manager/SchemaManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/core/manager/SchemaManager.ts -------------------------------------------------------------------------------- /src/core/models/graphModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/core/models/graphModel.ts -------------------------------------------------------------------------------- /src/core/models/schemaModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/core/models/schemaModel.ts -------------------------------------------------------------------------------- /src/core/models/schemaTagModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/core/models/schemaTagModel.ts -------------------------------------------------------------------------------- /src/core/models/serviceModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/core/models/serviceModel.ts -------------------------------------------------------------------------------- /src/core/repositories/GraphRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/core/repositories/GraphRepository.ts -------------------------------------------------------------------------------- /src/core/repositories/SchemaRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/core/repositories/SchemaRepository.ts -------------------------------------------------------------------------------- /src/core/repositories/SchemaTagRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/core/repositories/SchemaTagRepository.ts -------------------------------------------------------------------------------- /src/core/repositories/ServiceRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/core/repositories/ServiceRepository.ts -------------------------------------------------------------------------------- /src/core/shared-schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/core/shared-schemas.ts -------------------------------------------------------------------------------- /src/core/test-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/core/test-util.ts -------------------------------------------------------------------------------- /src/core/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/core/types.ts -------------------------------------------------------------------------------- /src/core/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/core/util.ts -------------------------------------------------------------------------------- /src/core/validator-plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/core/validator-plugin.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/knexfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/knexfile.ts -------------------------------------------------------------------------------- /src/migrations/20210504193054_initial_schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/migrations/20210504193054_initial_schema.ts -------------------------------------------------------------------------------- /src/registry/document-validation/document-validation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/registry/document-validation/document-validation.test.ts -------------------------------------------------------------------------------- /src/registry/document-validation/document-validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/registry/document-validation/document-validation.ts -------------------------------------------------------------------------------- /src/registry/federation/compose-schema-versions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/registry/federation/compose-schema-versions.test.ts -------------------------------------------------------------------------------- /src/registry/federation/compose-schema-versions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/registry/federation/compose-schema-versions.ts -------------------------------------------------------------------------------- /src/registry/federation/compose-schema.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/registry/federation/compose-schema.test.ts -------------------------------------------------------------------------------- /src/registry/federation/compose-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/registry/federation/compose-schema.ts -------------------------------------------------------------------------------- /src/registry/federation/deactivate-schema.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/registry/federation/deactivate-schema.test.ts -------------------------------------------------------------------------------- /src/registry/federation/deactivate-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/registry/federation/deactivate-schema.ts -------------------------------------------------------------------------------- /src/registry/federation/list-graphs.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/registry/federation/list-graphs.test.ts -------------------------------------------------------------------------------- /src/registry/federation/list-graphs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/registry/federation/list-graphs.ts -------------------------------------------------------------------------------- /src/registry/federation/register-schema.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/registry/federation/register-schema.test.ts -------------------------------------------------------------------------------- /src/registry/federation/register-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/registry/federation/register-schema.ts -------------------------------------------------------------------------------- /src/registry/federation/supergraph-schema.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/registry/federation/supergraph-schema.test.ts -------------------------------------------------------------------------------- /src/registry/federation/supergraph-schema.test.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/registry/federation/supergraph-schema.test.ts.md -------------------------------------------------------------------------------- /src/registry/federation/supergraph-schema.test.ts.md.3648652584: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/registry/federation/supergraph-schema.test.ts.md.3648652584 -------------------------------------------------------------------------------- /src/registry/federation/supergraph-schema.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/registry/federation/supergraph-schema.test.ts.snap -------------------------------------------------------------------------------- /src/registry/federation/supergraph-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/registry/federation/supergraph-schema.ts -------------------------------------------------------------------------------- /src/registry/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/registry/index.ts -------------------------------------------------------------------------------- /src/registry/maintanance/garbage-collect.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/registry/maintanance/garbage-collect.test.ts -------------------------------------------------------------------------------- /src/registry/maintanance/garbage-collect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/registry/maintanance/garbage-collect.ts -------------------------------------------------------------------------------- /src/registry/schema-validation/schema-check.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/registry/schema-validation/schema-check.test.ts -------------------------------------------------------------------------------- /src/registry/schema-validation/schema-check.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/registry/schema-validation/schema-check.ts -------------------------------------------------------------------------------- /src/registry/schema-validation/schema-coverage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/registry/schema-validation/schema-coverage.test.ts -------------------------------------------------------------------------------- /src/registry/schema-validation/schema-coverage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/registry/schema-validation/schema-coverage.ts -------------------------------------------------------------------------------- /src/registry/schema-validation/schema-validation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/registry/schema-validation/schema-validation.test.ts -------------------------------------------------------------------------------- /src/registry/schema-validation/schema-validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/src/registry/schema-validation/schema-validation.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarpTech/graphql-registry/HEAD/tsconfig.json --------------------------------------------------------------------------------