Skip to content

Commit 7336620

Browse files
committed
0.0.0-alpha.108
1 parent 43b9697 commit 7336620

File tree

37 files changed

+9688
-4449
lines changed

37 files changed

+9688
-4449
lines changed

apps/backend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphql-debugger/backend",
3-
"version": "0.0.0-alpha.107",
3+
"version": "0.0.0-alpha.108",
44
"main": "build/index.js",
55
"types": "build/index.d.ts",
66
"files": [

apps/collector-proxy/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphql-debugger/collector-proxy",
3-
"version": "0.0.0-alpha.107",
3+
"version": "0.0.0-alpha.108",
44
"main": "build/index.js",
55
"types": "build/index.d.ts",
66
"files": [

apps/ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphql-debugger/ui",
3-
"version": "0.0.0-alpha.107",
3+
"version": "0.0.0-alpha.108",
44
"main": "./src/index.ts",
55
"types": "./src/index.ts",
66
"files": [

benchmarks/README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ The API is served over HTTP using a common web server and load tested using [bom
2020

2121
### Results
2222

23-
| Name | Language | Server | Latency avg | Requests |
24-
| ---------------------------- | ------------- | --------------- | ---------------- | ------------- |
25-
| [yoga](https://github.com/dotansimha/graphql-yoga) | Node.js | http | 15.14ms | 13kps |
26-
| [apollo](https://github.com/apollographql/apollo-server) | Node.js | Express | 31.82ms | 6.3kps |
27-
| [yoga-otel](https://github.com/open-telemetry/opentelemetry-js/) | Node.js | http | 33.98ms | 5.9kps |
28-
| [helix](https://github.com/contra/graphql-helix) | Node.js | http | 46.37ms | 4.3kps |
29-
| [apollo-debugger](https://graphql-debugger.com/docs/plugins/apollo) | Node.js | Express | 53.69ms | 3.7kps |
30-
| [yoga-debugger](https://graphql-debugger.com/docs/plugins/yoga) | Node.js | http | 53.85ms | 3.7kps |
31-
| [apollo-otel](https://github.com/open-telemetry/opentelemetry-js/) | Node.js | Express | 56.24ms | 3.5kps |
32-
| [helix-otel](https://github.com/open-telemetry/opentelemetry-js/) | Node.js | http | 68.50ms | 2.9kps |
33-
| [helix-debugger](https://github.com/rocket-connect/graphql-debugger) | Node.js | http | 87.95ms | 2.3kps |
23+
| Name | Language | Server | Latency avg | Requests |
24+
| -------------------------------------------------------------------- | -------- | ------- | ----------- | -------- |
25+
| [yoga](https://github.com/dotansimha/graphql-yoga) | Node.js | http | 15.14ms | 13kps |
26+
| [apollo](https://github.com/apollographql/apollo-server) | Node.js | Express | 31.82ms | 6.3kps |
27+
| [yoga-otel](https://github.com/open-telemetry/opentelemetry-js/) | Node.js | http | 33.98ms | 5.9kps |
28+
| [helix](https://github.com/contra/graphql-helix) | Node.js | http | 46.37ms | 4.3kps |
29+
| [apollo-debugger](https://graphql-debugger.com/docs/plugins/apollo) | Node.js | Express | 53.69ms | 3.7kps |
30+
| [yoga-debugger](https://graphql-debugger.com/docs/plugins/yoga) | Node.js | http | 53.85ms | 3.7kps |
31+
| [apollo-otel](https://github.com/open-telemetry/opentelemetry-js/) | Node.js | Express | 56.24ms | 3.5kps |
32+
| [helix-otel](https://github.com/open-telemetry/opentelemetry-js/) | Node.js | http | 68.50ms | 2.9kps |
33+
| [helix-debugger](https://github.com/rocket-connect/graphql-debugger) | Node.js | http | 87.95ms | 2.3kps |

benchmarks/apollo-debugger/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@
66
"@graphql-debugger/apollo-server": "workspace:^",
77
"apollo-server": "3.13.0"
88
},
9-
"type": "module"
9+
"type": "module",
10+
"version": "0.0.0-alpha.108"
1011
}

benchmarks/apollo-otel/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,6 @@
1111
"@opentelemetry/semantic-conventions": "1.24.0",
1212
"apollo-server": "3.13.0"
1313
},
14-
"type": "module"
14+
"type": "module",
15+
"version": "0.0.0-alpha.108"
1516
}

benchmarks/apollo/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@
55
"dependencies": {
66
"apollo-server": "3.13.0"
77
},
8-
"type": "module"
8+
"type": "module",
9+
"version": "0.0.0-alpha.108"
910
}

benchmarks/helix-debugger/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,6 @@
88
"@graphql-debugger/trace-schema": "workspace:^",
99
"@graphql-debugger/adapter-proxy": "workspace:^"
1010
},
11-
"type": "module"
11+
"type": "module",
12+
"version": "0.0.0-alpha.108"
1213
}

benchmarks/helix-otel/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,6 @@
1212
"express": "4.19.2",
1313
"graphql-helix": "1.13.0"
1414
},
15-
"type": "module"
15+
"type": "module",
16+
"version": "0.0.0-alpha.108"
1617
}

benchmarks/helix/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@
66
"express": "4.19.2",
77
"graphql-helix": "1.13.0"
88
},
9-
"type": "module"
9+
"type": "module",
10+
"version": "0.0.0-alpha.108"
1011
}

0 commit comments

Comments
 (0)