From a0d00743cbbdb77b27c1a3d5711407ffed5befac Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Sat, 20 Aug 2022 21:39:51 +0200 Subject: refactor(types): move and rename GraphQL types The api file in services was not really readable. So I move the types and I also rewrite a little the fetch function. I also rename most of the type to avoid conflict with preexisting types (like Node) and to keep consistency. --- src/utils/hooks/use-article.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/utils/hooks/use-article.tsx') diff --git a/src/utils/hooks/use-article.tsx b/src/utils/hooks/use-article.tsx index 6281a54..e658407 100644 --- a/src/utils/hooks/use-article.tsx +++ b/src/utils/hooks/use-article.tsx @@ -1,4 +1,4 @@ -import { fetchAPI, getAPIUrl } from '@services/graphql/api'; +import { fetchAPI } from '@services/graphql/api'; import { getArticleFromRawData } from '@services/graphql/articles'; import { articleBySlugQuery } from '@services/graphql/articles.query'; import { Article } from '@ts/types/app'; @@ -22,9 +22,7 @@ const useArticle = ({ fallback, }: UseArticleConfig): Article | undefined => { const { data } = useSWR( - slug - ? { api: getAPIUrl(), query: articleBySlugQuery, variables: { slug } } - : null, + slug ? { query: articleBySlugQuery, variables: { slug } } : null, fetchAPI ); -- cgit v1.2.3