blob: 51852d01981a8e35488e1414fbd116edeab1c68d (
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
|
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[];
};
|