Skip to content

Commit 684ac46

Browse files
removed graphql import to fix version conflicts
1 parent e1bf103 commit 684ac46

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/PostGraphileManyDeletePlugin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import * as T from './pluginTypes';
22
import debugFactory from 'debug';
3-
import { GraphQLList } from 'graphql';
43
const debug = debugFactory('graphile-build-pg');
54

65
const PostGraphileManyDeletePlugin: T.Plugin = (
@@ -44,6 +43,7 @@ const PostGraphileManyDeletePlugin: T.Plugin = (
4443
pgIntrospectionResultsByKind,
4544
pgSql: sql,
4645
graphql: {
46+
GraphQLList,
4747
GraphQLNonNull,
4848
GraphQLInputObjectType,
4949
GraphQLString,

src/PostGraphileManyUpdatePlugin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import * as T from './pluginTypes';
22
import debugFactory from 'debug';
3-
import { GraphQLList } from 'graphql';
43
const debug = debugFactory('graphile-build-pg');
54

65
const PostGraphileManyUpdatePlugin: T.Plugin = (
@@ -44,6 +43,7 @@ const PostGraphileManyUpdatePlugin: T.Plugin = (
4443
pgIntrospectionResultsByKind,
4544
pgSql: sql,
4645
graphql: {
46+
GraphQLList,
4747
GraphQLNonNull,
4848
GraphQLInputObjectType,
4949
GraphQLString,

0 commit comments

Comments
 (0)