From a3eb518dcccaebd0f48c708c189ad2fcb07f0f73 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Sun, 21 Aug 2022 13:50:18 +0200 Subject: fix(comments): load all comments on a post Previously, only the first 10 comments was loaded. So I update the fetching method to retrieve all the comments on a post. Also, I choose to order comments on client side because of a bug with WPGraphQL. Finally, I renamed the Comment type to SingleComment to avoid conflict with existing types. --- src/ts/types/raw-data.ts | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/ts/types/raw-data.ts') diff --git a/src/ts/types/raw-data.ts b/src/ts/types/raw-data.ts index ae7f7c6..022016e 100644 --- a/src/ts/types/raw-data.ts +++ b/src/ts/types/raw-data.ts @@ -44,6 +44,12 @@ export type RawComment = { parentDatabaseId: number; }; +export type RawCommentsPage = { + comments: RawComment[]; + hasNextPage: boolean; + endCursor: string; +}; + export type RawCover = { altText: string; mediaDetails: { -- cgit v1.2.3