Skip to content

Commit 6da07f0

Browse files
committed
chore: added lodash package
1 parent 22c8823 commit 6da07f0

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

server/package-lock.json

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

server/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"dependencies": {
1212
"express": "^4.18.1",
1313
"express-graphql": "^0.12.0",
14-
"graphql": "^16.5.0"
14+
"graphql": "^16.5.0",
15+
"lodash": "^4.17.21"
1516
}
1617
}

server/schema/schema.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
const {GraphQLObjectType, GraphQLID, GraphQLString, GraphQLInt, GraphQLSchema, buildSchema} = require('graphql');
2+
var _ = require('lodash');
23

34
// dummy data
45
var userData = [

0 commit comments

Comments
 (0)