Skip to content

Commit 018672b

Browse files
author
Maggie Chen
committed
fix admin comments import issue
1 parent 3a9e101 commit 018672b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

backend/typescript/graphql/index.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ import userResolvers from "./resolvers/userResolvers";
1717
import userType from "./types/userType";
1818
import reviewDashboardResolvers from "./resolvers/reviewDashboardResolvers";
1919
import reviewDashboardType from "./types/reviewDashboardType";
20+
import adminCommentResolvers from "./resolvers/adminCommentsResolvers";
21+
import adminCommentType from "./types/adminCommentsType";
2022

2123
const query = gql`
2224
type Query {
@@ -39,13 +41,15 @@ const executableSchema = makeExecutableSchema({
3941
simpleEntityType,
4042
userType,
4143
reviewDashboardType,
44+
adminCommentType,
4245
],
4346
resolvers: merge(
4447
authResolvers,
4548
entityResolvers,
4649
simpleEntityResolvers,
4750
userResolvers,
4851
reviewDashboardResolvers,
52+
adminCommentResolvers,
4953
),
5054
});
5155

0 commit comments

Comments
 (0)