Skip to content

Commit 9786a66

Browse files
committed
chore: removed buildSchema import as it is no longer needed
1 parent 96347cb commit 9786a66

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

server/app.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
const express = require('express');
22
const {graphqlHTTP} = require('express-graphql');
3-
const {buildSchema} = require('graphql');
43

54
const schema = require('./schema/schema');
65

server/schema/schema.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const {GraphQLObjectType, GraphQLID, GraphQLString, GraphQLInt, GraphQLSchema, buildSchema, GraphQLBoolean} = require('graphql');
1+
const {GraphQLObjectType, GraphQLID, GraphQLString, GraphQLInt, GraphQLSchema, GraphQLBoolean} = require('graphql');
22
var _ = require('lodash');
33

44
// dummy data

0 commit comments

Comments
 (0)