aboutsummaryrefslogtreecommitdiffstats
path: root/src/services/graphql/fetchers/thematics/fetch-all-thematics-slugs.ts
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2023-11-28 16:18:03 +0100
committerArmand Philippot <git@armandphilippot.com>2023-11-28 18:04:24 +0100
commitf564d181bc428e25a02bf1d98c4449a6b3eb8e9e (patch)
tree6057a1e3a419957fb32d1a08160d5d746e54bc04 /src/services/graphql/fetchers/thematics/fetch-all-thematics-slugs.ts
parent180134883b281883246fc9909b1d494363861144 (diff)
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
Diffstat (limited to 'src/services/graphql/fetchers/thematics/fetch-all-thematics-slugs.ts')
-rw-r--r--src/services/graphql/fetchers/thematics/fetch-all-thematics-slugs.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/services/graphql/fetchers/thematics/fetch-all-thematics-slugs.ts b/src/services/graphql/fetchers/thematics/fetch-all-thematics-slugs.ts
index c44bb6d..80da462 100644
--- a/src/services/graphql/fetchers/thematics/fetch-all-thematics-slugs.ts
+++ b/src/services/graphql/fetchers/thematics/fetch-all-thematics-slugs.ts
@@ -1,7 +1,7 @@
import type { GraphQLNodes, Nullable, SlugNode } from '../../../../types';
import { fetchGraphQL, getGraphQLUrl } from '../../../../utils/helpers';
-type ThematicsSlugsResponse = {
+export type ThematicsSlugsResponse = {
thematics: Nullable<GraphQLNodes<SlugNode>>;
};