aboutsummaryrefslogtreecommitdiffstats
path: root/src/services/graphql/mutators/create-comment.ts
blob: 37d53483e37c51e6c0fdc9ace203dffb1a8e73b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import type { Nullable, WPComment } from '../../../types';
import { fetchGraphQL, getGraphQLUrl } from '../../../utils/helpers';

export type CreateCommentPayload = {
  clientMutationId: Nullable<string>;
  success: boolean;
  comment: Nullable<Pick<WPComment, 'approved'>>;
};

export type CreateCommentResponse = {
  createComment: CreateCommentPayload;
};

export const createCommentMutation = `mutation CreateComment($input: CreateCommentInput!) {
  createComment(input: $input) {
    clientMutationId
    comment {
      approved
    }
    success
  }
}`;

export type CreateCommentInput = {
  author: string;
  authorEmail: string;
  authorUrl: string;
  clientMutationId: string;
  commentOn: number;
  content: string;
  parent?: number;
};

/**
 * Create a new comment using GraphQL API.
 *
 * @param {CreateCommentInput} input - The comment data.
 * @returns {Promise<CreateCommentPayload>} The created comment.
 */
export const createComment = async (
  input: CreateCommentInput
): Promise<CreateCommentPayload> => {
  const response = await fetchGraphQL<CreateCommentResponse>({
    query: createCommentMutation,
    url: getGraphQLUrl(),
    variables: { input },
  });

  return response.createComment;
};