Skip to content

Commit 75ca7f5

Browse files
authored
Merge pull request #1029 from constructive-io/devin/1777255014-fix-runtime-dep
fix: add graphql-query dep to SDK packages + break cyclic workspace dependency
2 parents 434a578 + 0683ba6 commit 75ca7f5

33 files changed

Lines changed: 2775 additions & 7524 deletions

File tree

graphile/graphile-settings/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@
7575
"graphile-test": "workspace:^",
7676
"makage": "^0.3.0",
7777
"nodemon": "^3.1.14",
78-
"pgsql-test": "workspace:^",
7978
"ts-node": "^10.9.2"
8079
},
8180
"keywords": [

pgpm/core/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@
5050
"dependencies": {
5151
"@pgpmjs/env": "workspace:^",
5252
"@pgpmjs/logger": "workspace:^",
53-
"@pgpmjs/migrate-client": "workspace:^",
5453
"@pgpmjs/server-utils": "workspace:^",
5554
"@pgpmjs/types": "workspace:^",
5655
"csv-to-pg": "workspace:^",

pnpm-lock.yaml

Lines changed: 2615 additions & 7470 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/constructive-cli/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
],
4747
"dependencies": {
4848
"@0no-co/graphql.web": "^1.1.2",
49+
"@constructive-io/graphql-query": "workspace:^",
4950
"@constructive-io/graphql-types": "workspace:^",
5051
"appstash": "^0.7.0",
5152
"gql-ast": "workspace:^",

sdk/constructive-cli/src/admin/orm/client.ts

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,17 @@
33
* @generated by @constructive-io/graphql-codegen
44
* DO NOT EDIT - changes will be overwritten
55
*/
6-
import type { GraphQLAdapter, GraphQLError, QueryResult } from '@constructive-io/graphql-types';
7-
8-
export type { GraphQLAdapter, GraphQLError, QueryResult } from '@constructive-io/graphql-types';
6+
import type {
7+
GraphQLAdapter,
8+
GraphQLError,
9+
QueryResult,
10+
} from '@constructive-io/graphql-query/runtime';
11+
12+
export type {
13+
GraphQLAdapter,
14+
GraphQLError,
15+
QueryResult,
16+
} from '@constructive-io/graphql-query/runtime';
917

1018
/**
1119
* Default adapter that uses fetch for HTTP requests.

sdk/constructive-cli/src/admin/orm/query-builder.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* @generated by @constructive-io/graphql-codegen
44
* DO NOT EDIT - changes will be overwritten
55
*/
6-
import { parseType, print } from '@0no-co/graphql.web';
6+
import { parseType, print } from '@constructive-io/graphql-query/runtime';
77
import * as t from 'gql-ast';
88
import type { ArgumentNode, EnumValueNode, FieldNode, VariableDefinitionNode } from 'graphql';
99

sdk/constructive-cli/src/auth/orm/client.ts

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,17 @@
33
* @generated by @constructive-io/graphql-codegen
44
* DO NOT EDIT - changes will be overwritten
55
*/
6-
import type { GraphQLAdapter, GraphQLError, QueryResult } from '@constructive-io/graphql-types';
7-
8-
export type { GraphQLAdapter, GraphQLError, QueryResult } from '@constructive-io/graphql-types';
6+
import type {
7+
GraphQLAdapter,
8+
GraphQLError,
9+
QueryResult,
10+
} from '@constructive-io/graphql-query/runtime';
11+
12+
export type {
13+
GraphQLAdapter,
14+
GraphQLError,
15+
QueryResult,
16+
} from '@constructive-io/graphql-query/runtime';
917

1018
/**
1119
* Default adapter that uses fetch for HTTP requests.

sdk/constructive-cli/src/auth/orm/query-builder.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* @generated by @constructive-io/graphql-codegen
44
* DO NOT EDIT - changes will be overwritten
55
*/
6-
import { parseType, print } from '@0no-co/graphql.web';
6+
import { parseType, print } from '@constructive-io/graphql-query/runtime';
77
import * as t from 'gql-ast';
88
import type { ArgumentNode, EnumValueNode, FieldNode, VariableDefinitionNode } from 'graphql';
99

sdk/constructive-cli/src/objects/orm/client.ts

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,17 @@
33
* @generated by @constructive-io/graphql-codegen
44
* DO NOT EDIT - changes will be overwritten
55
*/
6-
import type { GraphQLAdapter, GraphQLError, QueryResult } from '@constructive-io/graphql-types';
7-
8-
export type { GraphQLAdapter, GraphQLError, QueryResult } from '@constructive-io/graphql-types';
6+
import type {
7+
GraphQLAdapter,
8+
GraphQLError,
9+
QueryResult,
10+
} from '@constructive-io/graphql-query/runtime';
11+
12+
export type {
13+
GraphQLAdapter,
14+
GraphQLError,
15+
QueryResult,
16+
} from '@constructive-io/graphql-query/runtime';
917

1018
/**
1119
* Default adapter that uses fetch for HTTP requests.

sdk/constructive-cli/src/objects/orm/query-builder.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* @generated by @constructive-io/graphql-codegen
44
* DO NOT EDIT - changes will be overwritten
55
*/
6-
import { parseType, print } from '@0no-co/graphql.web';
6+
import { parseType, print } from '@constructive-io/graphql-query/runtime';
77
import * as t from 'gql-ast';
88
import type { ArgumentNode, EnumValueNode, FieldNode, VariableDefinitionNode } from 'graphql';
99

0 commit comments

Comments
 (0)