From 58640fc6765ab7b0fef863c7e80fd002a02467b6 Mon Sep 17 00:00:00 2001 From: ryota-murakami Date: Thu, 24 May 2018 00:38:53 +0900 Subject: [PATCH] flow: remove unnecessary --- api/schema.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/api/schema.js b/api/schema.js index 4892e252da..790b8bb70e 100644 --- a/api/schema.js +++ b/api/schema.js @@ -1,8 +1,7 @@ -//@flow +// @flow /** * The combined schema out of types and resolvers (queries, mutations and subscriptions) */ -//$FlowFixMe const { makeExecutableSchema, addSchemaLevelResolveFunction, @@ -11,7 +10,6 @@ const debug = require('debug')('api:resolvers'); const logExecutions = require('graphql-log')({ logger: debug, }); -//$FlowFixMe const { merge } = require('lodash'); import UserError from './utils/UserError';