Skip to content

Commit 3f53157

Browse files
committed
Fix comment graphql query syntax
1 parent 7418d2d commit 3f53157

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/app/src/app/overmind/effects/gql/comments/mutations.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ export const createComment: Query<
3434
) {
3535
...Comment
3636
}
37-
${commentFragment}
3837
}
38+
${commentFragment}
3939
`;
4040

4141
export const deleteComment: Query<

packages/app/src/app/overmind/effects/gql/comments/queries.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ export const comment: Query<
1818
...CommentWithReplies
1919
}
2020
}
21-
${commentWithRepliesFragment}
2221
}
22+
${commentWithRepliesFragment}
2323
`;
2424

2525
export const comments: Query<
@@ -32,6 +32,6 @@ export const comments: Query<
3232
...Comment
3333
}
3434
}
35-
${commentFragment}
3635
}
36+
${commentFragment}
3737
`;

0 commit comments

Comments
 (0)