blob: a1bb1206780f6ed8b2904fd822bf51755e60e248 (
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
 | export type CommentAuthor = {
  gravatarUrl: string;
  name: string;
  url: string;
};
export type CommentAuthorResponse = {
  node: CommentAuthor;
};
export type Comment = {
  approved: '';
  author: CommentAuthor;
  commentId: number;
  content: string;
  date: string;
  id: string;
  parentDatabaseId: number;
  replies: Comment[];
};
export type RawComment = Omit<Comment, 'author'> & {
  author: CommentAuthorResponse;
};
export type CommentsResponse = {
  nodes: RawComment[];
};
export type CreatedComment = {
  clientMutationId: string;
  success: boolean;
  comment: null | {
    approved: boolean;
  };
};
export type CreatedCommentResponse = {
  createComment: CreatedComment;
};
export type CreatedCommentReturn = (
  author: string,
  authorEmail: string,
  authorUrl: string,
  content: string,
  parent: number,
  commentOn: number,
  mutationId: string
) => Promise<CreatedComment>;
 |