Skip to content
This repository has been archived by the owner on Sep 27, 2022. It is now read-only.

chore(deps): bump graphql to v16 #132

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion graphql/schema.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import type { GraphQLSchema } from "graphql";
import { resolve } from "path";
import {
makeSchema,
Expand Down Expand Up @@ -27,4 +28,4 @@ export default makeSchema({
],
},
types,
});
}) as unknown as GraphQLSchema;
7 changes: 6 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@
"apollo-server-micro": "3.6.3",
"argon2": "0.28.4",
"framer-motion": "6.2.8",
"graphql": "15.8.0",
"graphql": "16.3.0",
"graphql-scalars": "1.14.1",
"iron-session": "6.0.5",
"lodash": "4.17.21",
Expand Down Expand Up @@ -208,6 +208,11 @@
"*.{tsx,jsx,html,pcss,css}": "pnpm stylelint:individual",
"*.{tsx,ts,jsx,js,mjs,cjs}": "pnpm eslint:individual"
},
"pnpm": {
"overrides": {
"graphql": "16.3.0"
}
},
"prisma": {
"schema": "db/schema.prisma",
"seed": "ts-node db/seed.ts"
Expand Down
Loading