diff --git a/src/core/server/graph/tenant/resolvers/mutation.ts b/src/core/server/graph/tenant/resolvers/mutation.ts index 002a3e3b9..1fb331602 100644 --- a/src/core/server/graph/tenant/resolvers/mutation.ts +++ b/src/core/server/graph/tenant/resolvers/mutation.ts @@ -3,6 +3,7 @@ import { GQLMutationTypeResolver } from "talk-server/graph/tenant/schema/__gener const Mutation: GQLMutationTypeResolver = { createComment: async (source, { input }, ctx) => { const comment = await ctx.mutators.Comment.create(input); + // TODO: (cvle) tell wyatt to take a look at this :-) return { commentEdge: { cursor: comment.created_at,