removes references to missing dependency

This commit is contained in:
James
2020-04-11 20:49:11 -04:00
parent 5c4b760f48
commit d7aecddb38

View File

@@ -4,7 +4,6 @@ const graphQLHTTP = require('express-graphql');
const buildObjectType = require('./schema/buildObjectType');
const buildMutationInputType = require('./schema/buildMutationInputType');
const buildBlockType = require('./schema/buildBlockType');
const buildBlockInputType = require('./schema/buildBlockInputType');
const buildLocaleInputType = require('./schema/buildLocaleInputType');
const buildFallbackLocaleInputType = require('./schema/buildFallbackLocaleInputType');
const registerCollections = require('./schema/registerCollections');
@@ -27,7 +26,6 @@ class GraphQL {
this.Mutation = { name: 'Mutation', fields: {} };
this.buildBlockType = buildBlockType.bind(this);
this.buildBlockInputType = buildBlockInputType.bind(this);
this.buildMutationInputType = buildMutationInputType.bind(this);
this.buildWhereInputType = buildWhereInputType;
this.buildObjectType = buildObjectType.bind(this);