├── .github └── workflows │ ├── benchmark.template.yaml │ ├── decide-runner.template.yaml │ ├── federation-v1.workflow.yaml │ ├── images-cleanup.yaml │ ├── report.template.yaml │ └── website.yaml ├── .gitignore ├── .node-version ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── constant-vus-over-time_result.md ├── docker-compose.metrics.yaml ├── gateways ├── apollo-gateway │ ├── index.ts │ ├── install.sh │ ├── package.json │ ├── run.sh │ └── supergraph.graphql ├── apollo-router │ ├── .gitignore │ ├── config.yaml │ ├── install.sh │ ├── run.sh │ └── supergraph.graphql ├── cosmo │ ├── .gitignore │ ├── config.json │ ├── install.sh │ └── run.sh ├── grafbase │ ├── .gitignore │ ├── install.sh │ ├── run.sh │ └── supergraph.graphql ├── hive-gateway-router-runtime │ ├── .gitignore │ ├── gateway.config.ts │ ├── install.sh │ ├── package.json │ ├── run.sh │ └── supergraph.graphql ├── hive-gateway │ ├── .gitignore │ ├── install.sh │ ├── package.json │ ├── run.sh │ └── supergraph.graphql └── hive-router │ ├── .gitignore │ ├── install.sh │ ├── run.sh │ └── supergraph.graphql ├── grafana ├── dashboards │ └── dashboard.yaml ├── datasources │ └── datasource.yaml └── json-dashboards │ └── test-result_rev2.json ├── k6.js ├── makefile ├── monitor.sh ├── package.json ├── patches └── vega-canvas+2.0.0.patch ├── prometheus └── prometheus.yaml ├── ramping-vus_result.md ├── renovate.json ├── scripts ├── generate-report.ts └── images-cleanup.ts ├── subgraphs ├── Cargo.toml ├── accounts.rs ├── inventory.rs ├── lib.rs ├── main.rs ├── products.rs └── reviews.rs ├── test.sh ├── toolkit ├── Cargo.toml └── main.rs └── website ├── .gitignore ├── components.json ├── constant-data.csv ├── index.html ├── package.json ├── public ├── og-image.png └── robots.txt ├── src ├── app.tsx ├── components │ ├── common.tsx │ ├── cpu-chart.tsx │ ├── intro.tsx │ ├── latency-chart.tsx │ ├── logos.tsx │ ├── mem-chart.tsx │ ├── rps-chart.tsx │ ├── success-chart.tsx │ └── ui │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── chart.tsx │ │ └── table.tsx ├── csv.d.ts ├── index.css ├── lib │ ├── data.ts │ └── utils.ts └── main.tsx ├── stress-data.csv ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.github/workflows/benchmark.template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/.github/workflows/benchmark.template.yaml -------------------------------------------------------------------------------- /.github/workflows/decide-runner.template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/.github/workflows/decide-runner.template.yaml -------------------------------------------------------------------------------- /.github/workflows/federation-v1.workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/.github/workflows/federation-v1.workflow.yaml -------------------------------------------------------------------------------- /.github/workflows/images-cleanup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/.github/workflows/images-cleanup.yaml -------------------------------------------------------------------------------- /.github/workflows/report.template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/.github/workflows/report.template.yaml -------------------------------------------------------------------------------- /.github/workflows/website.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/.github/workflows/website.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | v25 2 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/README.md -------------------------------------------------------------------------------- /constant-vus-over-time_result.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/constant-vus-over-time_result.md -------------------------------------------------------------------------------- /docker-compose.metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/docker-compose.metrics.yaml -------------------------------------------------------------------------------- /gateways/apollo-gateway/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/gateways/apollo-gateway/index.ts -------------------------------------------------------------------------------- /gateways/apollo-gateway/install.sh: -------------------------------------------------------------------------------- 1 | npm i -------------------------------------------------------------------------------- /gateways/apollo-gateway/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/gateways/apollo-gateway/package.json -------------------------------------------------------------------------------- /gateways/apollo-gateway/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/gateways/apollo-gateway/run.sh -------------------------------------------------------------------------------- /gateways/apollo-gateway/supergraph.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/gateways/apollo-gateway/supergraph.graphql -------------------------------------------------------------------------------- /gateways/apollo-router/.gitignore: -------------------------------------------------------------------------------- 1 | router 2 | -------------------------------------------------------------------------------- /gateways/apollo-router/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/gateways/apollo-router/config.yaml -------------------------------------------------------------------------------- /gateways/apollo-router/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/gateways/apollo-router/install.sh -------------------------------------------------------------------------------- /gateways/apollo-router/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/gateways/apollo-router/run.sh -------------------------------------------------------------------------------- /gateways/apollo-router/supergraph.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/gateways/apollo-router/supergraph.graphql -------------------------------------------------------------------------------- /gateways/cosmo/.gitignore: -------------------------------------------------------------------------------- 1 | cosmo 2 | -------------------------------------------------------------------------------- /gateways/cosmo/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/gateways/cosmo/config.json -------------------------------------------------------------------------------- /gateways/cosmo/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/gateways/cosmo/install.sh -------------------------------------------------------------------------------- /gateways/cosmo/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/gateways/cosmo/run.sh -------------------------------------------------------------------------------- /gateways/grafbase/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/gateways/grafbase/.gitignore -------------------------------------------------------------------------------- /gateways/grafbase/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/gateways/grafbase/install.sh -------------------------------------------------------------------------------- /gateways/grafbase/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/gateways/grafbase/run.sh -------------------------------------------------------------------------------- /gateways/grafbase/supergraph.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/gateways/grafbase/supergraph.graphql -------------------------------------------------------------------------------- /gateways/hive-gateway-router-runtime/.gitignore: -------------------------------------------------------------------------------- 1 | hive-gateway -------------------------------------------------------------------------------- /gateways/hive-gateway-router-runtime/gateway.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/gateways/hive-gateway-router-runtime/gateway.config.ts -------------------------------------------------------------------------------- /gateways/hive-gateway-router-runtime/install.sh: -------------------------------------------------------------------------------- 1 | # https://github.com/graphql-hive/gateway/releases 2 | 3 | npm i 4 | -------------------------------------------------------------------------------- /gateways/hive-gateway-router-runtime/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/gateways/hive-gateway-router-runtime/package.json -------------------------------------------------------------------------------- /gateways/hive-gateway-router-runtime/run.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | NODE_ENV=production npm start > ./gateway_log.txt 2>&1 3 | -------------------------------------------------------------------------------- /gateways/hive-gateway-router-runtime/supergraph.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/gateways/hive-gateway-router-runtime/supergraph.graphql -------------------------------------------------------------------------------- /gateways/hive-gateway/.gitignore: -------------------------------------------------------------------------------- 1 | hive-gateway -------------------------------------------------------------------------------- /gateways/hive-gateway/install.sh: -------------------------------------------------------------------------------- 1 | # https://github.com/graphql-hive/gateway/releases 2 | 3 | npm i 4 | -------------------------------------------------------------------------------- /gateways/hive-gateway/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/gateways/hive-gateway/package.json -------------------------------------------------------------------------------- /gateways/hive-gateway/run.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | NODE_ENV=production npm start > ./gateway_log.txt 2>&1 3 | -------------------------------------------------------------------------------- /gateways/hive-gateway/supergraph.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/gateways/hive-gateway/supergraph.graphql -------------------------------------------------------------------------------- /gateways/hive-router/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/gateways/hive-router/.gitignore -------------------------------------------------------------------------------- /gateways/hive-router/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/gateways/hive-router/install.sh -------------------------------------------------------------------------------- /gateways/hive-router/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/gateways/hive-router/run.sh -------------------------------------------------------------------------------- /gateways/hive-router/supergraph.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/gateways/hive-router/supergraph.graphql -------------------------------------------------------------------------------- /grafana/dashboards/dashboard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/grafana/dashboards/dashboard.yaml -------------------------------------------------------------------------------- /grafana/datasources/datasource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/grafana/datasources/datasource.yaml -------------------------------------------------------------------------------- /grafana/json-dashboards/test-result_rev2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/grafana/json-dashboards/test-result_rev2.json -------------------------------------------------------------------------------- /k6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/k6.js -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/makefile -------------------------------------------------------------------------------- /monitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/monitor.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/package.json -------------------------------------------------------------------------------- /patches/vega-canvas+2.0.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/patches/vega-canvas+2.0.0.patch -------------------------------------------------------------------------------- /prometheus/prometheus.yaml: -------------------------------------------------------------------------------- 1 | scrape_configs: 2 | -------------------------------------------------------------------------------- /ramping-vus_result.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/ramping-vus_result.md -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/renovate.json -------------------------------------------------------------------------------- /scripts/generate-report.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/scripts/generate-report.ts -------------------------------------------------------------------------------- /scripts/images-cleanup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/scripts/images-cleanup.ts -------------------------------------------------------------------------------- /subgraphs/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/subgraphs/Cargo.toml -------------------------------------------------------------------------------- /subgraphs/accounts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/subgraphs/accounts.rs -------------------------------------------------------------------------------- /subgraphs/inventory.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/subgraphs/inventory.rs -------------------------------------------------------------------------------- /subgraphs/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/subgraphs/lib.rs -------------------------------------------------------------------------------- /subgraphs/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/subgraphs/main.rs -------------------------------------------------------------------------------- /subgraphs/products.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/subgraphs/products.rs -------------------------------------------------------------------------------- /subgraphs/reviews.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/subgraphs/reviews.rs -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/test.sh -------------------------------------------------------------------------------- /toolkit/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/toolkit/Cargo.toml -------------------------------------------------------------------------------- /toolkit/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/toolkit/main.rs -------------------------------------------------------------------------------- /website/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .wrangler 4 | -------------------------------------------------------------------------------- /website/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/website/components.json -------------------------------------------------------------------------------- /website/constant-data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/website/constant-data.csv -------------------------------------------------------------------------------- /website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/website/index.html -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/website/package.json -------------------------------------------------------------------------------- /website/public/og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/website/public/og-image.png -------------------------------------------------------------------------------- /website/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Allow: / 3 | -------------------------------------------------------------------------------- /website/src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/website/src/app.tsx -------------------------------------------------------------------------------- /website/src/components/common.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/website/src/components/common.tsx -------------------------------------------------------------------------------- /website/src/components/cpu-chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/website/src/components/cpu-chart.tsx -------------------------------------------------------------------------------- /website/src/components/intro.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/website/src/components/intro.tsx -------------------------------------------------------------------------------- /website/src/components/latency-chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/website/src/components/latency-chart.tsx -------------------------------------------------------------------------------- /website/src/components/logos.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/website/src/components/logos.tsx -------------------------------------------------------------------------------- /website/src/components/mem-chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/website/src/components/mem-chart.tsx -------------------------------------------------------------------------------- /website/src/components/rps-chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/website/src/components/rps-chart.tsx -------------------------------------------------------------------------------- /website/src/components/success-chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/website/src/components/success-chart.tsx -------------------------------------------------------------------------------- /website/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/website/src/components/ui/button.tsx -------------------------------------------------------------------------------- /website/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/website/src/components/ui/card.tsx -------------------------------------------------------------------------------- /website/src/components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/website/src/components/ui/chart.tsx -------------------------------------------------------------------------------- /website/src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/website/src/components/ui/table.tsx -------------------------------------------------------------------------------- /website/src/csv.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/website/src/csv.d.ts -------------------------------------------------------------------------------- /website/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/website/src/index.css -------------------------------------------------------------------------------- /website/src/lib/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/website/src/lib/data.ts -------------------------------------------------------------------------------- /website/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/website/src/lib/utils.ts -------------------------------------------------------------------------------- /website/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/website/src/main.tsx -------------------------------------------------------------------------------- /website/stress-data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/website/stress-data.csv -------------------------------------------------------------------------------- /website/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/website/tsconfig.app.json -------------------------------------------------------------------------------- /website/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/website/tsconfig.json -------------------------------------------------------------------------------- /website/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/website/tsconfig.node.json -------------------------------------------------------------------------------- /website/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-hive/graphql-gateways-benchmark/HEAD/website/vite.config.ts --------------------------------------------------------------------------------