aboutsummaryrefslogtreecommitdiffstats
path: root/src/services/graphql/fetchers/posts/fetch-posts-list.ts
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2023-11-27 19:40:40 +0100
committerArmand Philippot <git@armandphilippot.com>2023-11-28 18:04:24 +0100
commitfb749e8befb2dcdc266c2e8b7ef7c9001947143a (patch)
tree80ae62cd0a699d4feb14fe2a239b4fe317a400a0 /src/services/graphql/fetchers/posts/fetch-posts-list.ts
parentab81df7f3d317281a05caec18e2cfd89dc26bc7a (diff)
test(services): add tests for posts fetchers
Diffstat (limited to 'src/services/graphql/fetchers/posts/fetch-posts-list.ts')
-rw-r--r--src/services/graphql/fetchers/posts/fetch-posts-list.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/services/graphql/fetchers/posts/fetch-posts-list.ts b/src/services/graphql/fetchers/posts/fetch-posts-list.ts
index 452892b..0bf6dc1 100644
--- a/src/services/graphql/fetchers/posts/fetch-posts-list.ts
+++ b/src/services/graphql/fetchers/posts/fetch-posts-list.ts
@@ -8,7 +8,7 @@ import type {
} from '../../../../types';
import { fetchGraphQL, getGraphQLUrl } from '../../../../utils/helpers';
-type PostsListResponse = {
+export type PostsListResponse = {
posts: Nullable<GraphQLConnection<WPPostPreview>>;
};