MCPcopy Create free account
hub / github.com/dailydotdev/apps / deleteComment

Function deleteComment

packages/shared/src/graphql/comments.ts:262–269  ·  view source on GitHub ↗
(
  id: string,
  requestMethod: typeof gqlClient.request,
)

Source from the content-addressed store, hash-verified

260`;
261
262export const deleteComment = (
263 id: string,
264 requestMethod: typeof gqlClient.request,
265): Promise<EmptyResponse> => {
266 return requestMethod(DELETE_COMMENT_MUTATION, {
267 id,
268 });
269};
270
271export const COMMENT_BY_ID_QUERY = gql`
272 query Comment($id: ID!) {

Callers 5

comments.spec.tsFile · 0.90
useDeleteCommentFunction · 0.90
CommentFeedFunction · 0.85
PostCommentsFunction · 0.85
ActivityRepliesTabFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected