diff options
| author | Armand Philippot <git@armandphilippot.com> | 2023-11-27 19:40:40 +0100 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2023-11-28 18:04:24 +0100 |
| commit | fb749e8befb2dcdc266c2e8b7ef7c9001947143a (patch) | |
| tree | 80ae62cd0a699d4feb14fe2a239b4fe317a400a0 /src/services/graphql/fetchers/posts/fetch-posts-count.ts | |
| parent | ab81df7f3d317281a05caec18e2cfd89dc26bc7a (diff) | |
test(services): add tests for posts fetchers
Diffstat (limited to 'src/services/graphql/fetchers/posts/fetch-posts-count.ts')
| -rw-r--r-- | src/services/graphql/fetchers/posts/fetch-posts-count.ts | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/services/graphql/fetchers/posts/fetch-posts-count.ts b/src/services/graphql/fetchers/posts/fetch-posts-count.ts index a72af52..316cd47 100644 --- a/src/services/graphql/fetchers/posts/fetch-posts-count.ts +++ b/src/services/graphql/fetchers/posts/fetch-posts-count.ts @@ -5,10 +5,8 @@ import type { } from '../../../../types'; import { fetchGraphQL, getGraphQLUrl } from '../../../../utils/helpers'; -type PostsCountResponse = { - posts: Nullable<{ - pageInfo: Pick<GraphQLPageInfo, 'total'>; - }>; +export type PostsCountResponse = { + posts: Nullable<Record<'pageInfo', Pick<GraphQLPageInfo, 'total'>>>; }; const postsCountQuery = `query PostsCount($authorName: String, $search: String, $title: String) { |
