Skip to content

Commit a06af93

Browse files
committed
0.0.0-alpha.106
1 parent 8bf2c87 commit a06af93

File tree

28 files changed

+36
-36
lines changed

28 files changed

+36
-36
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.105",
3+
"version": "0.0.0-alpha.106",
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.105",
3+
"version": "0.0.0-alpha.106",
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.105",
3+
"version": "0.0.0-alpha.106",
44
"main": "./src/index.ts",
55
"types": "./src/index.ts",
66
"files": [

docs/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/docs",
3-
"version": "0.0.0-alpha.105",
3+
"version": "0.0.0-alpha.106",
44
"main": "build/index.js",
55
"types": "build/index.d.ts",
66
"type": "module",

docs/src/pages/docs/faq/missing-context.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ const myServer = new GraphQLServerFooBar({
1515
}),
1616
},
1717
});
18-
```
18+
```

docs/src/pages/docs/packages/trace-directive.mdx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,23 +10,23 @@ First you should apply the directive to your type definitions and then run the t
1010

1111
```gql
1212
type User {
13-
name: String
14-
age: Int
15-
balance: Int @trace
16-
posts: [Post] @trace
13+
name: String
14+
age: Int
15+
balance: Int @trace
16+
posts: [Post] @trace
1717
}
1818

1919
type Post {
20-
title: String
21-
comments: [Comment] @trace
20+
title: String
21+
comments: [Comment] @trace
2222
}
2323

2424
type Comment {
25-
content: String
25+
content: String
2626
}
2727

2828
type Query {
29-
users: [User] @trace
29+
users: [User] @trace
3030
}
3131
```
3232

@@ -62,4 +62,4 @@ const server = createServer({
6262
}),
6363
},
6464
});
65-
```
65+
```

docs/src/pages/docs/packages/trace-schema.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# @graphql-debugger/trace-schema
22

3-
Use the `traceSchema` method to automaticly apply the [`traceDirective`](/docs/packages/trace-directive) to all fields in your schema.
3+
Use the `traceSchema` method to automaticly apply the [`traceDirective`](/docs/packages/trace-directive) to all fields in your schema.
44

55
## Example
66

e2e/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/e2e",
3-
"version": "0.0.0-alpha.105",
3+
"version": "0.0.0-alpha.106",
44
"private": true,
55
"publishConfig": {
66
"publish": false

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/monorepo",
3-
"version": "0.0.0-alpha.105",
3+
"version": "0.0.0-alpha.106",
44
"private": true,
55
"scripts": {
66
"dev": "cross-env turbo dev --filter '!graphql-debugger' --filter '!@graphql-debugger/landing-page-app' --filter '!@graphql-debugger/landing-page-server' --concurrency=30",

packages/adapters/base/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/adapter-base",
3-
"version": "0.0.0-alpha.105",
3+
"version": "0.0.0-alpha.106",
44
"main": "build/index.js",
55
"types": "build/index.d.ts",
66
"files": [

0 commit comments

Comments
 (0)