Skip to content

Commit e5ba8aa

Browse files
authored
Merge pull request #12 from warrenisarobot/master
removed graphql import to fix version conflicts
2 parents e1bf103 + 684ac46 commit e5ba8aa

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)