From f564d181bc428e25a02bf1d98c4449a6b3eb8e9e Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Tue, 28 Nov 2023 16:18:03 +0100 Subject: fix(services,types): make coherent Thematic type and query * some nodes was queried but missing in the Thematic type and vice versa, it is now fixed * add tests for all thematics fetchers --- src/services/graphql/fetchers/thematics/fetch-thematic.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/services/graphql/fetchers/thematics/fetch-thematic.ts') diff --git a/src/services/graphql/fetchers/thematics/fetch-thematic.ts b/src/services/graphql/fetchers/thematics/fetch-thematic.ts index a9958bc..4214785 100644 --- a/src/services/graphql/fetchers/thematics/fetch-thematic.ts +++ b/src/services/graphql/fetchers/thematics/fetch-thematic.ts @@ -1,7 +1,7 @@ import type { Nullable, WPThematic } from '../../../../types'; import { fetchGraphQL, getGraphQLUrl } from '../../../../utils/helpers'; -type ThematicResponse = { +export type ThematicResponse = { thematic: Nullable; }; @@ -54,6 +54,8 @@ const thematicQuery = `query Thematic($slug: ID!) { afterMore beforeMore } + databaseId + date featuredImage { node { altText @@ -65,6 +67,7 @@ const thematicQuery = `query Thematic($slug: ID!) { title } } + modified seo { metaDesc title -- cgit v1.2.3